Skip to content
Snippets Groups Projects
Commit ff5c7fcc authored by srosse's avatar srosse
Browse files

no-jira: fix an issue with the movie plugin and IE 11

parent 4fd1c59b
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@
author : 'frentix GmbH',
authorurl : 'http://www.frentix.com',
infourl : 'http://www.frentix.com',
version : '2.2'
version : '2.2.1'
};
},
......@@ -307,7 +307,14 @@
var pl = "x={" + ed.dom.getAttrib(fe, "title") + "};";
deserializeParameters(pl, fe);
setTimeout(generatePreview, 500);
}
} else {
fe = ed.dom.select("img.mceItemOlatMovieViewer", fe);
if (fe.length == 1 && /mceItemOlatMovieViewer/.test(ed.dom.getAttrib(fe[0], "class"))) {
var pl = "x={" + ed.dom.getAttrib(fe[0], "title") + "};";
deserializeParameters(pl, fe[0]);
setTimeout(generatePreview, 500);
}
}
}
function parseBPlayerScript(editor,script) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment