brotherton-erpnext/js/app.js

21 lines
663 B
JavaScript
Raw Normal View History

2012-01-20 08:17:16 +00:00
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
}
2012-01-24 09:03:21 +00:00
wn.modules_path = 'erpnext';
2012-01-20 08:17:16 +00:00
$(document).bind('toolbar_setup', function() {
2012-02-27 13:46:24 +00:00
$('.brand').html('<b>erp</b>next\
<i class="icon-home icon-white navbar-icon-home" ></i>')
.hover(function() {
$(this).find('.icon-home').addClass('navbar-icon-home-hover');
}, function() {
$(this).find('.icon-home').removeClass('navbar-icon-home-hover');
});
2012-04-10 06:05:19 +00:00
});