Commit 0201f60b authored by Ad Schellevis's avatar Ad Schellevis

(ui) resize menu search on focus / unfocus, reload page if navigated to the same url

parent 4fc39576
......@@ -120,14 +120,28 @@
return true;
},
afterSelect: function(item){
window.location.href = item.id;
// (re)load page
if (window.location.href.split("#")[0].indexOf(item.id.split("#")[0]) > -1 ) {
// same url, different hash marker
window.location.href = item.id;
window.location.reload();
} else {
window.location.href = item.id;
}
}
});
}
});
// change search input size on focus() to fit results
$("#menu_search_box").focus(function(){
$("#menu_search_box").css('width', '450px');
$("#menu_messages").hide();
});
$("#menu_search_box").focusout(function(){
$("#menu_search_box").css('width', '250px');
$("#menu_messages").show();
});
});
</script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment