Skip to content

Commit 25ab2e6

Browse files
Update web-forms.js
1 parent 86397cb commit 25ab2e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web-forms.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1256,7 +1256,7 @@ String.prototype.ContainsWithSpliter = function (Text, Spliter)
12561256

12571257
String.prototype.ContainsNameWithSpliter = function (Text, Spliter, SpliterNameValue)
12581258
{
1259-
return (Spliter + this + SpliterNameValue).indexOf(Spliter + Text + SpliterNameValue) !== -1;
1259+
return (Spliter + this).indexOf(Spliter + Text + SpliterNameValue) !== -1;
12601260
};
12611261

12621262
String.prototype.Replace = function (SearchValue, ReplaceValue)

0 commit comments

Comments
 (0)