1
- /* WebFormsJS 1.1 - Providing Infrastructure For Web Controls In CodeBehind Framework Owned By Elanat (elanat.net) */
1
+ /* WebFormsJS 1.2 - Providing Infrastructure For Web Controls In CodeBehind Framework Owned By Elanat (elanat.net) */
2
2
3
3
/* Start Options */
4
4
@@ -618,7 +618,7 @@ function cb_SetWebFormsValues(WebFormsValues, UsePostBack, WithoutWebFormsSectio
618
618
var PreRunner = new Array ( ) ;
619
619
var FirstChar = WebFormsList [ i ] . substring ( 0 , 1 ) ;
620
620
var PreRunnerIndexer = 0 ;
621
- while ( ( FirstChar == '→ ' ) || ( FirstChar == '↑ ' ) )
621
+ while ( ( FirstChar == ': ' ) || ( FirstChar == '( ' ) )
622
622
{
623
623
PreRunner [ PreRunnerIndexer ++ ] = WebFormsList [ i ] . GetTextBefore ( ")" ) ;
624
624
WebFormsList [ i ] = WebFormsList [ i ] . GetTextAfter ( ")" ) ;
@@ -1460,13 +1460,13 @@ function cb_SetPreRunnerQueueForEval(PreRunner, ScriptValue)
1460
1460
1461
1461
switch ( FirstChar )
1462
1462
{
1463
- case "↑ " :
1464
- PeriodMiliSecond = parseFloat ( PreRunner [ 0 ] . GetTextAfter ( "↑ " ) ) * 1000 ;
1463
+ case "( " :
1464
+ PeriodMiliSecond = parseFloat ( PreRunner [ 0 ] . GetTextAfter ( "( " ) ) * 1000 ;
1465
1465
PreRunner . shift ( ) ;
1466
1466
setInterval ( function ( ) { cb_SetPreRunnerQueueForEval ( PreRunner , ScriptValue ) ; } , PeriodMiliSecond ) ;
1467
1467
break ;
1468
- case "→ " :
1469
- DelayMiliSecond = parseFloat ( PreRunner [ 0 ] . GetTextAfter ( "→ " ) ) * 1000 ;
1468
+ case ": " :
1469
+ DelayMiliSecond = parseFloat ( PreRunner [ 0 ] . GetTextAfter ( ": " ) ) * 1000 ;
1470
1470
PreRunner . shift ( ) ;
1471
1471
setTimeout ( function ( ) { cb_SetPreRunnerQueueForEval ( PreRunner , ScriptValue ) ; } , DelayMiliSecond ) ;
1472
1472
}
@@ -1484,13 +1484,13 @@ function cb_SetPreRunnerQueueForSetValueToInput(PreRunner, ActionOperation, Acti
1484
1484
1485
1485
switch ( FirstChar )
1486
1486
{
1487
- case "↑ " :
1488
- PeriodMiliSecond = parseFloat ( PreRunner [ 0 ] . GetTextAfter ( "↑ " ) ) * 1000 ;
1487
+ case "( " :
1488
+ PeriodMiliSecond = parseFloat ( PreRunner [ 0 ] . GetTextAfter ( "( " ) ) * 1000 ;
1489
1489
PreRunner . shift ( ) ;
1490
1490
setInterval ( function ( ) { cb_SetPreRunnerQueueForSetValueToInput ( PreRunner , ActionOperation , ActionFeature , ActionValue ) ; } , PeriodMiliSecond ) ;
1491
1491
break ;
1492
- case "→ " :
1493
- DelayMiliSecond = parseFloat ( PreRunner [ 0 ] . GetTextAfter ( "→ " ) ) * 1000 ;
1492
+ case ": " :
1493
+ DelayMiliSecond = parseFloat ( PreRunner [ 0 ] . GetTextAfter ( ": " ) ) * 1000 ;
1494
1494
PreRunner . shift ( ) ;
1495
1495
setTimeout ( function ( ) { cb_SetPreRunnerQueueForSetValueToInput ( PreRunner , ActionOperation , ActionFeature , ActionValue ) ; } , DelayMiliSecond ) ;
1496
1496
}
0 commit comments