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
Hi @rochestb , any chance we can display the same for both fitToBackground: true and false when resizing? It's good if we can get middle part of the video in fitToBackground:True and better to apply the same to fitToBackground:False. Currently, when using container, it displays the left part of the video. It would be great if you add something to make it the same as fitToBakcground:true.
Hi rochestb, thx for the nice script.
there is an issue when using it with
fitToBackground: false
you can see it when you resize the browser window.
http://rochestb.github.io/jQuery.YoutubeBackground/
i changed (LINE 223)
if (!self.options.fitToBackground) {
container = self.$node;
}
to
if (!self.options.fitToBackground) {
container = self.$node;
return;
}
to avoid resizing
The text was updated successfully, but these errors were encountered: