pari: trunk r955 - /trunk/config/setup/5.html
asterisk-gui-commits at lists.digium.com
asterisk-gui-commits at lists.digium.com
Thu May 17 10:38:08 MST 2007
Author: pari
Date: Thu May 17 12:38:08 2007
New Revision: 955
URL: http://svn.digium.com/view/asterisk-gui?view=rev&rev=955
Log:
!(zero or more digits) instead of .(one or more digits)
Modified:
trunk/config/setup/5.html
Modified: trunk/config/setup/5.html
URL: http://svn.digium.com/view/asterisk-gui/trunk/config/setup/5.html?view=diff&rev=955&r1=954&r2=955
==============================================================================
--- trunk/config/setup/5.html (original)
+++ trunk/config/setup/5.html Thu May 17 12:38:08 2007
@@ -333,7 +333,7 @@
var temp = a.substr(1);
// if there is a dot at the end
// check ormore and remove the trailing dot
- if( temp.substr(-1,1) == "." ){
+ if( temp.substr(-1,1) == "!" ){
temp = temp.slice(0, -1);
returnstring = "or more";
if(e == 1)
@@ -460,7 +460,7 @@
}
// append a '.' if 'ormore' is checked
if( _$('ormore').checked ){
- pattern = pattern + "." ;
+ pattern = pattern + "!" ;
}
// assign this to the field 'pattern'
_$('pattern').value = pattern;
More information about the asterisk-gui-commits
mailing list