aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValerio Virgillito2012-06-28 14:58:49 -0700
committerValerio Virgillito2012-06-28 14:58:49 -0700
commitd2af32f2c8a408dbf6bf0aded5c381b9daf52aaa (patch)
tree62e9c2a13183897012cd11654a96906a36992038
parent3ba9accb8e1887bfd6f1f912b6135073a3d9c70c (diff)
downloadninja-d2af32f2c8a408dbf6bf0aded5c381b9daf52aaa.tar.gz
Fix for the youtube component close button on windows
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
-rw-r--r--node_modules/montage-google/youtube-channel.reel/youtube-channel.html10
-rw-r--r--node_modules/montage-google/youtube-channel.reel/youtube-channel.js9
2 files changed, 16 insertions, 3 deletions
diff --git a/node_modules/montage-google/youtube-channel.reel/youtube-channel.html b/node_modules/montage-google/youtube-channel.reel/youtube-channel.html
index 01cc42f3..65ffc945 100644
--- a/node_modules/montage-google/youtube-channel.reel/youtube-channel.html
+++ b/node_modules/montage-google/youtube-channel.reel/youtube-channel.html
@@ -96,7 +96,7 @@
96 .montage-youtube-channel-close { 96 .montage-youtube-channel-close {
97 position: absolute; 97 position: absolute;
98 top: 5px; 98 top: 5px;
99 left: 5px; 99 right: 5px;
100 100
101 width: 25px; 101 width: 25px;
102 height: 25px; 102 height: 25px;
@@ -107,6 +107,14 @@
107 107
108 color: #EEE; 108 color: #EEE;
109 outline: none; 109 outline: none;
110 text-align: center;
111 padding: 0;
112 }
113
114 .montage-youtube-channel .montage-youtube-player {
115 border-top: 35px solid #000;
116 -webkit-box-sizing: border-box;
117 box-sizing: border-box;
110 } 118 }
111 </style> 119 </style>
112</head> 120</head>
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