From 563fcc1b05c818b6ade98596add70d3b4c9bf988 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Mon, 30 Apr 2012 21:06:31 +0530 Subject: [PATCH] fix in startup.js --- erpnext/startup/startup.js | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/erpnext/startup/startup.js b/erpnext/startup/startup.js index 321149cf81..5dfd692aec 100644 --- a/erpnext/startup/startup.js +++ b/erpnext/startup/startup.js @@ -106,7 +106,7 @@ erpnext.startup.start = function() { ', { expiry_string: expiry_string })); } else if (diff < 0) { $('header').append(repl('
\ - This ERPNext subscription has expired and should be deleted. \ + This ERPNext subscription has expired. \
', { expiry_string: expiry_string })); } } @@ -215,12 +215,3 @@ erpnext.send_message = function(opts) { } }); } - -erpnext.hide_naming_series = function() { - if(cur_frm.fields_dict.naming_series) { - hide_field('naming_series'); - if(cur_frm.doc.__islocal) { - unhide_field('naming_series'); - } - } -}