wn.provide('erpnext.topbar'); /* \ */ erpnext.topbar.TopBar = Class.extend({ init: function() { this.make(); $('.brand').html(wn.boot.website_settings.brand_html); this.make_items(); $('.topbar').dropdown(); }, make: function() { $('header').append('
\
\
\ [brand]\ \ \ \
\
\
'); $('.brand').attr('href', '#!' + (wn.boot.website_settings.home_page || 'Login Page')) }, make_items: function() { var items = wn.boot.website_menus; // parent labels for(var i=0;i\ %(label)s', item)) } } // child labels for(var i=0;i'); } item.route = item.url || item.custom_page; $parent_li.find('.dropdown-menu').append(repl('
  • \ %(label)s
  • ', item)) } } } }); // footer erpnext.Footer = Class.extend({ init: function() { $('footer').html(repl('', wn.boot.website_settings)); this.make_items(); }, make_items: function() { var items = wn.boot.website_menus for(var i=0;i%(label)s', item)) } } } }); $(document).bind('startup', function() { erpnext.footer = new erpnext.Footer(); erpnext.topbar.topbar = new erpnext.topbar.TopBar(); })