rbrindley: branch 2.0 r4811 - /branches/2.0/config/js/features2.js

SVN commits to the Asterisk-GUI project asterisk-gui-commits at lists.digium.com
Mon Jun 1 10:57:37 CDT 2009


Author: rbrindley
Date: Mon Jun  1 10:57:34 2009
New Revision: 4811

URL: http://svn.asterisk.org/svn-view/asterisk-gui?view=rev&rev=4811
Log:

- fixed an issue that disallowed the 'digits' in Application Maps
  to not be able to have # or *


Modified:
    branches/2.0/config/js/features2.js

Modified: branches/2.0/config/js/features2.js
URL: http://svn.asterisk.org/svn-view/asterisk-gui/branches/2.0/config/js/features2.js?view=diff&rev=4811&r1=4810&r2=4811
==============================================================================
--- branches/2.0/config/js/features2.js (original)
+++ branches/2.0/config/js/features2.js Mon Jun  1 10:57:34 2009
@@ -481,7 +481,7 @@
 		}
 		if (typeof params.digits !== 'undefined') {
 			vali = 'digits';
-			validate(params.digits, {notnull: true, num: true});
+			validate(params.digits, {notnull: true, keypress: true});
 		}
 		if (typeof params.app_name !== 'undefined') {
 			vali = 'app_name';




More information about the asterisk-gui-commits mailing list