diff options
Diffstat (limited to 'theme/javascript/core/navigation.js')
-rwxr-xr-x | theme/javascript/core/navigation.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/theme/javascript/core/navigation.js b/theme/javascript/core/navigation.js index c1766ab..060eb7a 100755 --- a/theme/javascript/core/navigation.js +++ b/theme/javascript/core/navigation.js @@ -4,9 +4,8 @@ define([ "core/events", "core/state", "core/progress", - "core/loading", - "core/search" -], function($, URL, events, state, progress, loading, search) { + "core/loading" +], function($, URL, events, state, progress, loading) { var prev, next; var usePushState = (typeof history.pushState !== "undefined"); @@ -67,7 +66,6 @@ define([ // Update state state.update($("html")); // recover search keyword - search.recover(); preparePage(); }) .fail(function (e) { |