blob: e0716ececa4b0a1774c3125beb954eacab9ec8da [file] [log] [blame]
Rushabh Mehta8c309be2012-01-20 13:47:16 +05301wn.app = {
2 name: 'ERPNext',
3 license: 'GNU/GPL - Usage Condition: All "erpnext" branding must be kept as it is',
4 source: 'https://github.com/webnotes/erpnext',
5 publisher: 'Web Notes Technologies Pvt Ltd, Mumbai',
6 copyright: '© Web Notes Technologies Pvt Ltd',
7 version: '2.' + window._version_number
8}
9
Rushabh Mehta865c00a2012-01-24 14:33:21 +053010wn.modules_path = 'erpnext';
Rushabh Mehta8c309be2012-01-20 13:47:16 +053011
12$(document).bind('toolbar_setup', function() {
Anand Doshiac144122012-02-27 19:16:24 +053013 $('.brand').html('<b>erp</b>next\
14 <i class="icon-home icon-white navbar-icon-home" ></i>')
15 .hover(function() {
16 $(this).find('.icon-home').addClass('navbar-icon-home-hover');
17 }, function() {
18 $(this).find('.icon-home').removeClass('navbar-icon-home-hover');
19 });
Anand Doshi859cb722012-04-10 11:35:19 +053020});