diff options
Diffstat (limited to 'view/html/recipes.html')
-rw-r--r-- | view/html/recipes.html | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/view/html/recipes.html b/view/html/recipes.html index b5bf786..0287dc5 100644 --- a/view/html/recipes.html +++ b/view/html/recipes.html @@ -15,25 +15,7 @@ </ul> </main> {{ template "footer" }} - <script> - function filter() { - var input, query, ul, li, a, i, txtValue; - input = document.getElementById('search'); - query = input.value.toUpperCase(); - ul = document.getElementById("recipes"); - li = ul.getElementsByTagName('li'); - - for (i = 0; i < li.length; i++) { - a = li[i].getElementsByTagName("a")[0]; - txtValue = a.textContent || a.innerText; - if (txtValue.toUpperCase().indexOf(query) > -1) { - li[i].style.display = ""; - } else { - li[i].style.display = "none"; - } - } - } - </script> + <script src="/static/view/static/ceres.js"></script> </body> </html> {{end}} |