Rushabh Mehta | 8c309be | 2012-01-20 13:47:16 +0530 | [diff] [blame] | 1 | wn.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 Mehta | 865c00a | 2012-01-24 14:33:21 +0530 | [diff] [blame] | 10 | wn.modules_path = 'erpnext'; |
Rushabh Mehta | 8c309be | 2012-01-20 13:47:16 +0530 | [diff] [blame] | 11 | |
| 12 | $(document).bind('toolbar_setup', function() { |
Anand Doshi | ac14412 | 2012-02-27 19:16:24 +0530 | [diff] [blame] | 13 | $('.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 Doshi | 859cb72 | 2012-04-10 11:35:19 +0530 | [diff] [blame] | 20 | }); |