fix - show about of application

This commit is contained in:
Anand Doshi
2012-04-17 13:54:53 +05:30
parent 0f51aef451
commit c9d1ac4112
4 changed files with 19 additions and 14 deletions

View File

@@ -1,10 +1,14 @@
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.provide('erpnext');
erpnext.set_about = function() {
wn.provide('wn.app');
$.extend(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.modules_path = 'erpnext';