We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a188b94 commit dbc5937Copy full SHA for dbc5937
1 file changed
src/main/resources/ch/racic/selenium/helper/download/js/ieHack.js
@@ -20,7 +20,7 @@ var bin2arrVBS = [
20
" arrl=\"\"",
21
" if LenB(t) mod 2 Then arrl= Chr(AscB(RightB(t,1)))",
22
"End Function"
23
-]
+];
24
25
// Taken code from
26
// http://www.actionscript.org/resources/articles/745/5/JavaScript-and-VBScript-Injection-in-ActionScript-3/Page5.html
@@ -30,9 +30,9 @@ function injectVB(vbArray) {
30
var temp = '';
31
for (var i = 0; i < vbArray.length; i++) {
32
var vbTemp = vbArray[i];
33
- temp += ('" + vbTemp + "' + String.fromCharCode(13));
+ temp += vbTemp + String.fromCharCode(13);
34
}
35
window.execScript(temp, 'vbscript');
36
-}
+};
37
38
injectVB(bin2arrVBS);
0 commit comments