Skip to content

Commit 495e58f

Browse files
Update web-forms.js
Changing up arrow and forward arrow characters to standard ascii characters
1 parent cfb7d27 commit 495e58f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

web-forms.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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) */
22

33
/* Start Options */
44

@@ -618,7 +618,7 @@ function cb_SetWebFormsValues(WebFormsValues, UsePostBack, WithoutWebFormsSectio
618618
var PreRunner = new Array();
619619
var FirstChar = WebFormsList[i].substring(0, 1);
620620
var PreRunnerIndexer = 0;
621-
while ((FirstChar == '') || (FirstChar == ''))
621+
while ((FirstChar == ':') || (FirstChar == '('))
622622
{
623623
PreRunner[PreRunnerIndexer++] = WebFormsList[i].GetTextBefore(")");
624624
WebFormsList[i] = WebFormsList[i].GetTextAfter(")");
@@ -1460,13 +1460,13 @@ function cb_SetPreRunnerQueueForEval(PreRunner, ScriptValue)
14601460

14611461
switch (FirstChar)
14621462
{
1463-
case "":
1464-
PeriodMiliSecond = parseFloat(PreRunner[0].GetTextAfter("")) * 1000;
1463+
case "(":
1464+
PeriodMiliSecond = parseFloat(PreRunner[0].GetTextAfter("(")) * 1000;
14651465
PreRunner.shift();
14661466
setInterval(function () { cb_SetPreRunnerQueueForEval(PreRunner, ScriptValue); }, PeriodMiliSecond);
14671467
break;
1468-
case "":
1469-
DelayMiliSecond = parseFloat(PreRunner[0].GetTextAfter("")) * 1000;
1468+
case ":":
1469+
DelayMiliSecond = parseFloat(PreRunner[0].GetTextAfter(":")) * 1000;
14701470
PreRunner.shift();
14711471
setTimeout(function () { cb_SetPreRunnerQueueForEval(PreRunner, ScriptValue); }, DelayMiliSecond);
14721472
}
@@ -1484,13 +1484,13 @@ function cb_SetPreRunnerQueueForSetValueToInput(PreRunner, ActionOperation, Acti
14841484

14851485
switch (FirstChar)
14861486
{
1487-
case "":
1488-
PeriodMiliSecond = parseFloat(PreRunner[0].GetTextAfter("")) * 1000;
1487+
case "(":
1488+
PeriodMiliSecond = parseFloat(PreRunner[0].GetTextAfter("(")) * 1000;
14891489
PreRunner.shift();
14901490
setInterval(function () { cb_SetPreRunnerQueueForSetValueToInput(PreRunner, ActionOperation, ActionFeature, ActionValue); }, PeriodMiliSecond);
14911491
break;
1492-
case "":
1493-
DelayMiliSecond = parseFloat(PreRunner[0].GetTextAfter("")) * 1000;
1492+
case ":":
1493+
DelayMiliSecond = parseFloat(PreRunner[0].GetTextAfter(":")) * 1000;
14941494
PreRunner.shift();
14951495
setTimeout(function () { cb_SetPreRunnerQueueForSetValueToInput(PreRunner, ActionOperation, ActionFeature, ActionValue); }, DelayMiliSecond);
14961496
}

0 commit comments

Comments
 (0)