Commit 95fb0aa3 authored by Ad Schellevis's avatar Ad Schellevis

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

parent 0201f60b
......@@ -225,11 +225,27 @@ $pagetitle .= sprintf(' | %s.%s', $config['system']['hostname'], $config['system
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