From 38e6cb2e1fbaf432478263376c4eef2be56c84c0 Mon Sep 17 00:00:00 2001 From: John Mayhew Date: Fri, 20 Apr 2012 11:32:12 -0700 Subject: fixed injection caused by inability to add our webRequest listener due to an incorrect host permission. Reverting to the old hack fix. --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 42fe43f4..b46c9826 100644 --- a/manifest.json +++ b/manifest.json @@ -15,7 +15,7 @@ "notifications", "webRequest", "webRequestBlocking", - "http://localhost:/" + "http://ninja/*" ], "requirements": { "3D": { -- cgit v1.2.3 From 5cca0aa1d99121def2349b881d2cffddd2816ba9 Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Fri, 20 Apr 2012 11:47:19 -0700 Subject: Fixing the flow component to layout all the tiles on first draw. Signed-off-by: Valerio Virgillito --- node_modules/montage/ui/flow.reel/flow.js | 1 + 1 file changed, 1 insertion(+) diff --git a/node_modules/montage/ui/flow.reel/flow.js b/node_modules/montage/ui/flow.reel/flow.js index 929e61b8..2137f782 100644 --- a/node_modules/montage/ui/flow.reel/flow.js +++ b/node_modules/montage/ui/flow.reel/flow.js @@ -786,6 +786,7 @@ var Flow = exports.Flow = Montage.create(Component, { } else { this._objectsForRepetition = value; } + this.needsDraw = true; } }, -- cgit v1.2.3 From 5a0331fc26fcc2cdc6200086109e34440a2dec6a Mon Sep 17 00:00:00 2001 From: Valerio Virgillito Date: Fri, 20 Apr 2012 14:25:36 -0700 Subject: Fixing the 3d stack for the youtube channel component. Signed-off-by: Valerio Virgillito --- node_modules/montage/ui/youtube-channel.reel/youtube-channel.html | 1 + 1 file changed, 1 insertion(+) diff --git a/node_modules/montage/ui/youtube-channel.reel/youtube-channel.html b/node_modules/montage/ui/youtube-channel.reel/youtube-channel.html index 848322e0..88fc3889 100644 --- a/node_modules/montage/ui/youtube-channel.reel/youtube-channel.html +++ b/node_modules/montage/ui/youtube-channel.reel/youtube-channel.html @@ -58,6 +58,7 @@ .montage-youtube-channel { width: 370px; position: relative; + -webkit-transform-style: preserve-3d; } .montage-youtube-channel img { -- cgit v1.2.3