aboutsummaryrefslogtreecommitdiff
path: root/node_modules
diff options
context:
space:
mode:
authorValerio Virgillito2012-03-17 18:41:17 -0700
committerValerio Virgillito2012-03-17 18:41:17 -0700
commita086ca62423a09807e2f3a79107249bc31d5e908 (patch)
tree14485545ff242d341cdf3fe0c46340427fb7bf14 /node_modules
parent3070d7b2a3b96609eace60825c721951c85405cc (diff)
downloadninja-a086ca62423a09807e2f3a79107249bc31d5e908.tar.gz
Adding back webkit-transform styles in set3DProperties. Changing "zoom" to "zoomValue" in map component to avoid scaling the map.
Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com> Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'node_modules')
-rw-r--r--node_modules/montage/ui/map.reel/map.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/node_modules/montage/ui/map.reel/map.js b/node_modules/montage/ui/map.reel/map.js
index 1e4f452c..c03d51c5 100644
--- a/node_modules/montage/ui/map.reel/map.js
+++ b/node_modules/montage/ui/map.reel/map.js
@@ -140,7 +140,7 @@ var Map = exports.Map = Montage.create(Component, /** @lends module:"montage/ui/
140 } 140 }
141 }, 141 },
142 142
143 zoom: { 143 zoomValue: {
144 value: 8 144 value: 8
145 }, 145 },
146 146
@@ -250,7 +250,7 @@ var Map = exports.Map = Montage.create(Component, /** @lends module:"montage/ui/
250 if(!this._map) { 250 if(!this._map) {
251 var map; 251 var map;
252 var myOptions = { 252 var myOptions = {
253 zoom: this.zoom, 253 zoom: this.zoomValue,
254 center: new window.google.maps.LatLng(latLng.lat, latLng.lng), 254 center: new window.google.maps.LatLng(latLng.lat, latLng.lng),
255 mapTypeId: window.google.maps.MapTypeId.ROADMAP 255 mapTypeId: window.google.maps.MapTypeId.ROADMAP
256 }; 256 };