Ignore:
Timestamp:
Sep 25, 2016, 2:03:05 PM (8 years ago)
Author:
alloc
Message:

Web: Added option to not show the navbar on page load

Location:
binary-improvements/webserver/js
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/webserver/js/index.js

    r274 r293  
    44        hidebuttondiv: $(".adminnavbarhidebutton"),
    55        menubardiv: $(".adminnavbar"),
     6        hideOnStart: false,
    67});
    78SetupInventoryDialog ();
  • binary-improvements/webserver/js/tabs.js

    r274 r293  
    2828                }
    2929               
    30                 options.hidebuttondiv.on ('click.action', function (event) {
     30                var hidebarevent = function (event) {
    3131                        if (options.hidebuttondiv.hasClass (options.hideClass)) {
    3232                                $("*").removeClass (options.hideClass);
     
    3636                                options.menubardiv.addClass (options.hideClass);
    3737                        }
    38                 });
     38                };
     39                options.hidebuttondiv.on ('click.action', hidebarevent);
    3940               
    4041                this.element.find ("ul > li").addClass (options.menuButtonClass);
     
    5253                        self.tabs [$(this).children ("a").attr ("href")] = $(this);
    5354                });
     55               
     56                if (options.hideOnStart == true) {
     57                        hidebarevent ();
     58                }
    5459        },
    5560       
Note: See TracChangeset for help on using the changeset viewer.