From 2afaba240006f95350f8f3425a17ac1fd5ffdace Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Sat, 3 Oct 2015 17:42:12 +0200 Subject: fix #863 --- js/build/app.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'js/build/app.js') diff --git a/js/build/app.js b/js/build/app.js index 46e5e30bd..f320b0f84 100644 --- a/js/build/app.js +++ b/js/build/app.js @@ -2969,11 +2969,17 @@ app.directive('newsSearch', ["$document", "$location", function ($document, $loc var box = $('#searchbox'); box.val($location.search().search); - box.on('search', function () { - var value = $(this).val(); + var doSearch = function () { + var value = box.val(); scope.$apply(function () { scope.onSearch(value); }); + }; + + box.on('search keyup', function (event) { + if (event.type === 'search' || event.keyCode === 13) { + doSearch(); + } }); // carry over search on route change @@ -2989,6 +2995,7 @@ app.directive('newsSearch', ["$document", "$location", function ($document, $loc } }; }]); + app.directive('newsStickyMenu', function () { 'use strict'; -- cgit v1.2.3