You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
485 B

  1. wn.app = {
  2. name: 'Yourapp',
  3. license: 'GNU/GPL - Usage Condition: All "yourapp" branding must be kept as it is',
  4. source: 'https://github.com/webnotes/yourapp',
  5. publisher: 'Your Company',
  6. copyright: '© Your Company',
  7. version: window._version_number
  8. }
  9. // call startup when ready
  10. $(document).bind('ready', function() {
  11. startup();
  12. });
  13. $(document).bind('toolbar_setup', function() {
  14. $('.brand').html('yourbrand\
  15. <i class="icon-home icon-white navbar-icon-home" ></i>');
  16. });