1 function maximiseMap() {
6 $("#content").css("top", "0px");
7 if ($("html").attr("dir") == "ltr") {
8 $("#content").css("left", "0px");
10 $("#content").css("right", "0px");
16 function minimiseMap() {
18 $("#greeting").show();
21 $("#content").css("top", "30px");
22 if ($("html").attr("dir") == "ltr") {
23 $("#content").css("left", "185px");
25 $("#content").css("right", "185px");
31 $(document).ready(function () {
32 $(window).resize(handleResize);
35 $("#search_form").submit(function () {
36 $("#sidebar_title").html(I18n.t('site.sidebar.search_results'));
37 $("#sidebar_content").load($(this).attr("action"), {
38 query: $("#query").val()