您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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