bootstrap toolbar

This commit is contained in:
Rushabh Mehta
2012-01-20 13:47:16 +05:30
parent 764fdb942e
commit 8c309bee53
7 changed files with 56 additions and 60 deletions

View File

@@ -1,3 +1,12 @@
wn.app = {
name: 'ERPNext',
license: 'GNU/GPL - Usage Condition: All "erpnext" branding must be kept as it is',
source: 'https://github.com/webnotes/erpnext',
publisher: 'Web Notes Technologies Pvt Ltd, Mumbai',
copyright: '© Web Notes Technologies Pvt Ltd',
version: '2.' + window._version_number
}
wn.settings.no_history = true;
wn.require('lib/js/lib/jquery.min.js');
@@ -11,4 +20,8 @@ wn.require('lib/css/legacy/default.css');
$(document).bind('ready', function() {
startup();
});
});
$(document).bind('toolbar_setup', function() {
$('.brand').html('<b>erp</b>next');
})