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 9d3461a commit 583ede1Copy full SHA for 583ede1
src/toolbox/toolbox.flashembed.js
@@ -148,7 +148,10 @@
148
opts = extend({}, opts);
149
150
/******* OBJECT tag and it's attributes *******/
151
- var html = '<object width="' + opts.width + '" height="' + opts.height + '" id="' + opts.id + '"';
+ var html = '<object width="' + opts.width +
152
+ '" height="' + opts.height +
153
+ '" id="' + opts.id + '"' +
154
+ '" name="' + opts.id + '"';
155
156
if (opts.cachebusting) {
157
opts.src += ((opts.src.indexOf("?") != -1 ? "&" : "?") + Math.random());
0 commit comments