This commit is contained in:
Karol Orzeł 2015-02-18 18:03:05 +01:00
parent 5a4bcfbf95
commit 25ebdfcd7a
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<input type="text" placeholder="Search..." value="{{ query }}" data-searchsidebar-input="{{ base_url_relative }}{{ config.plugins.simplesearch.route}}/query" />
<script>
jQuery(document).ready(function($){
var input = $('[data-searchsidebar-input]');
input.on('keypress', function(event) {
if (event.which == 13 && input.val().length > 3) {
event.preventDefault();
window.location.href = input.data('searchsidebar-input') + ':' + input.val();
}
});
});
</script>