Skip to content

Commit

Permalink
Fixed a compatibility issues with IE7
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentGoderre committed Aug 21, 2012
1 parent 3b34eca commit 1bd0fde
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/js/pe-ap-min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/js/workers/multimedia.js
Expand Up @@ -96,7 +96,7 @@
}
//Can play using a fallback
if (canPlay) {
$fbObject = $('<object play="" id="' + media_id + '" width="' + width + '" height="' + height + '" class="' + fbClass + '" type="application/x-shockwave-flash" data="' + fbBin + '" tabindex="-1"><param name="movie" value="' + fbBin + '"/><param name="flashvars" value="' + fbVars + '"/><param name="allowScriptAccess" value="always"/><param name="bgcolor" value="#000000"/><param name="wmode" value="opaque"/>');
$fbObject = $('<object play="" pause="" id="' + media_id + '" width="' + width + '" height="' + height + '" class="' + fbClass + '" type="application/x-shockwave-flash" data="' + fbBin + '" tabindex="-1"><param name="movie" value="' + fbBin + '"/><param name="flashvars" value="' + fbVars + '"/><param name="allowScriptAccess" value="always"/><param name="bgcolor" value="#000000"/><param name="wmode" value="opaque"/>');
media.before($fbObject);
media.remove();
media = $fbObject;
Expand Down

0 comments on commit 1bd0fde

Please sign in to comment.