aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage-google/youtube-channel.reel/youtube-channel.js
diff options
context:
space:
mode:
authorJonathan Duran2012-06-29 15:16:11 -0700
committerJonathan Duran2012-06-29 15:16:11 -0700
commit5496f0060c5f43e7951a110241a18b9e631761bb (patch)
treebd1c8f20eb5b6ae0e24fcae28f16eb13cb969747 /node_modules/montage-google/youtube-channel.reel/youtube-channel.js
parent3aa1242147264351b7d827fa25ecb5dc42bc2fb0 (diff)
parentec69c8761f798eaf39c4a154997f8bc54b7e47f4 (diff)
downloadninja-5496f0060c5f43e7951a110241a18b9e631761bb.tar.gz
Merge branch 'refs/heads/NINJAmaster' into TimelineUber
Conflicts: js/panels/Timeline/TimelinePanel.reel/TimelinePanel.js Signed-off-by: Jonathan Duran <jduran@motorola.com>
Diffstat (limited to 'node_modules/montage-google/youtube-channel.reel/youtube-channel.js')
-rw-r--r--node_modules/montage-google/youtube-channel.reel/youtube-channel.js9
1 files changed, 7 insertions, 2 deletions
diff --git a/node_modules/montage-google/youtube-channel.reel/youtube-channel.js b/node_modules/montage-google/youtube-channel.reel/youtube-channel.js
index 95cd336a..f06216e1 100644
--- a/node_modules/montage-google/youtube-channel.reel/youtube-channel.js
+++ b/node_modules/montage-google/youtube-channel.reel/youtube-channel.js
@@ -180,8 +180,12 @@ var YoutubeChannel = exports.YoutubeChannel = Montage.create(Component, {
180 180
181 // take the video from the top only once it's stopped animating 181 // take the video from the top only once it's stopped animating
182 window.setTimeout(function() { 182 window.setTimeout(function() {
183 self.element.style.zIndex = null; 183 self._element.style.zIndex = null;
184 }, 500); 184 // HACK: Trigger a redraw so that Flash in Chrome on
185 // Windows doesn't remain rendered on top of everything,
186 // despite actually being hidden
187 self.player.element.getBoundingClientRect();
188 }, 510);
185 } 189 }
186 190
187 } 191 }
@@ -196,6 +200,7 @@ var YoutubeChannel = exports.YoutubeChannel = Montage.create(Component, {
196 value: function() { 200 value: function() {
197 var doc = this._element.ownerDocument; 201 var doc = this._element.ownerDocument;
198 202
203 this._popupElement.style.width = doc.width + "px";
199 this.player.width = doc.width; 204 this.player.width = doc.width;
200 this.player.height = doc.height; 205 this.player.height = doc.height;
201 206