Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 560d84f commit 4e5d22eCopy full SHA for 4e5d22e
src/toolbox/toolbox.flashembed.js
@@ -191,7 +191,7 @@
191
for (var k in conf) {
192
if (conf[k]) {
193
var val = conf[k];
194
- vars += k +'='+ (/function|object/.test(typeof val) ? f.asString(val) : val) + '&';
+ vars += k +'='+ encodeURIComponent(/function|object/.test(typeof val) ? f.asString(val) : val) + '&';
195
}
196
197
vars = vars.slice(0, -1);
0 commit comments