aboutsummaryrefslogtreecommitdiff
path: root/js/stage/stage.reel
diff options
context:
space:
mode:
authorArmen Kesablyan2012-02-13 13:44:37 -0800
committerArmen Kesablyan2012-02-13 13:44:37 -0800
commitf979f47658a03640cc81e729e3cf88d80f8ec366 (patch)
tree68dc8e9162487455be670319bf13abd8f2860830 /js/stage/stage.reel
parentda32190d5dd91fa2c26f8cabb746980c3d06035c (diff)
downloadninja-f979f47658a03640cc81e729e3cf88d80f8ec366.tar.gz
appended function : toViewportCoordinates in stage
Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'js/stage/stage.reel')
-rw-r--r--js/stage/stage.reel/stage.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/js/stage/stage.reel/stage.js b/js/stage/stage.reel/stage.js
index 9e2df5a2..77cd1936 100644
--- a/js/stage/stage.reel/stage.js
+++ b/js/stage/stage.reel/stage.js
@@ -780,6 +780,12 @@ exports.Stage = Montage.create(Component, {
780 } 780 }
781 }, 781 },
782 782
783 toViewportCoordinates: {
784 value: function(x,y) {
785 return [x + this._userContentLeft, y + this._userContentTop];
786 }
787 },
788
783 setZoom: { 789 setZoom: {
784 value: function(value) { 790 value: function(value) {
785 if(!this._firstDraw) 791 if(!this._firstDraw)