handleResize();
}
-$(document).ready(handleResize);
-$(window).resize(handleResize);
+$(document).ready(function () {
+ $(window).resize(handleResize);
+ handleResize();
+
+ $("#search_form").submit(function () {
+ $("#sidebar_title").html(I18n.t('site.sidebar.search_results'));
+ $("#sidebar_content").load($(this).attr("action"), {
+ query: $("#query").val()
+ }, openSidebar);
+
+ return false;
+ });
+});