diff options
author | Valerio Virgillito | 2012-05-30 10:33:16 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-30 10:33:16 -0700 |
commit | 0c2f181ca565f9c3b68fcfdc7124416e2e2fa647 (patch) | |
tree | f6d5300c528a69305abd30ffea1beee016241375 /js/controllers/styles-controller.js | |
parent | 31b094ee21102f99a4021d505bc3a28527c9e23d (diff) | |
parent | d4f2df2a7b3ec79fc54e17f09195dbc37331f051 (diff) | |
download | ninja-0c2f181ca565f9c3b68fcfdc7124416e2e2fa647.tar.gz |
Merge branch 'Dom-Architecture' of github.com:mqg734/ninja-internal into document-bindings-fix
Conflicts:
js/stage/stage-deps.js
js/stage/stage.reel/stage.js
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js/controllers/styles-controller.js')
-rwxr-xr-x | js/controllers/styles-controller.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/js/controllers/styles-controller.js b/js/controllers/styles-controller.js index 217a536d..f35a6757 100755 --- a/js/controllers/styles-controller.js +++ b/js/controllers/styles-controller.js | |||
@@ -1261,9 +1261,10 @@ var stylesController = exports.StylesController = Montage.create(Component, { | |||
1261 | } | 1261 | } |
1262 | } | 1262 | } |
1263 | if(isNaN(dist)) { | 1263 | if(isNaN(dist)) { |
1264 | dist = null; | 1264 | return "none"; |
1265 | } else { | ||
1266 | return dist; | ||
1265 | } | 1267 | } |
1266 | return dist; | ||
1267 | } | 1268 | } |
1268 | }, | 1269 | }, |
1269 | 1270 | ||