You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[I'm a noob. I learned about the ability to request a pull, so I did that with this code. Cheers! ]
When embedding a youtube video, the corner of the flash player cuts off the close button. This kind of problem is often fixed by setting the wmode of the embed to 'transparent,' but this can hurt the framerate of the video. It solves the problem and doesn't hurt the framerate to set the wmode to 'opaque.' If this is done in four places it solves the problem:
Starting at line 622:
object.append(jQuery("<embed></embed>").attr({
src : options.reference,
width : options.width,
height : options.height,
wmode : "opaque", /* <-- RIGHT HERE */
allowfullscreen: "true",
type : "application/x-shockwave-flash",
pluginspage : "http://get.adobe.com/flashplayer/"}));
[I'm a noob. I learned about the ability to request a pull, so I did that with this code. Cheers! ]
When embedding a youtube video, the corner of the flash player cuts off the close button. This kind of problem is often fixed by setting the wmode of the embed to 'transparent,' but this can hurt the framerate of the video. It solves the problem and doesn't hurt the framerate to set the wmode to 'opaque.' If this is done in four places it solves the problem:
Starting at line 622:
Starting at line 645:
Starting at line 671:
Starting at line 697:
The text was updated successfully, but these errors were encountered: