Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

19 righe
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. });