diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-09-15 15:09:21 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-09-15 15:09:21 +0200 |
commit | c98143b4778e7e2ccbd7b0d042e954224c5405f7 (patch) | |
tree | c920c1cc3272f4c7b2ed48ef130c5a689845e347 | |
parent | 5534e6602d5133b222b97401b5355b870a1712e0 (diff) | |
download | Ishtar-c98143b4778e7e2ccbd7b0d042e954224c5405f7.tar.bz2 Ishtar-c98143b4778e7e2ccbd7b0d042e954224c5405f7.zip |
JS fix initialization for search - 2
-rw-r--r-- | ishtar_common/templates/widgets/search_input.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ishtar_common/templates/widgets/search_input.html b/ishtar_common/templates/widgets/search_input.html index aa0f7fede..0cdf74cc5 100644 --- a/ishtar_common/templates/widgets/search_input.html +++ b/ishtar_common/templates/widgets/search_input.html @@ -46,6 +46,10 @@ if (typeof enable_save == "undefined") { enable_save = function(){}; } +if (typeof load_bookmark_list == "undefined") { + load_bookmark_list = function(){}; +} + $(document).ready(function(){ $(".search-widget input").keypress(function(e) { var key = e.key; |