From f3dc624fa464a79fd8e8cec1ddd16ed2109bda23 Mon Sep 17 00:00:00 2001 From: Ananya Sen Date: Fri, 10 Feb 2012 16:05:27 -0800 Subject: Revert "Merge from /joseeight/ninja-internal/tree/FileIO" This reverts commit c48eeb01bd726895dc577d8b843b2a75883eee07. Signed-off-by: Ananya Sen --- js/panels/Timeline/Tween.reel/Tween.html | 48 ------------ js/panels/Timeline/Tween.reel/Tween.js | 109 ---------------------------- js/panels/Timeline/Tween.reel/css/Tween.css | 4 - 3 files changed, 161 deletions(-) delete mode 100644 js/panels/Timeline/Tween.reel/Tween.html delete mode 100644 js/panels/Timeline/Tween.reel/Tween.js delete mode 100644 js/panels/Timeline/Tween.reel/css/Tween.css (limited to 'js/panels/Timeline/Tween.reel') diff --git a/js/panels/Timeline/Tween.reel/Tween.html b/js/panels/Timeline/Tween.reel/Tween.html deleted file mode 100644 index 307dcd02..00000000 --- a/js/panels/Timeline/Tween.reel/Tween.html +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/js/panels/Timeline/Tween.reel/Tween.js b/js/panels/Timeline/Tween.reel/Tween.js deleted file mode 100644 index eddf1b17..00000000 --- a/js/panels/Timeline/Tween.reel/Tween.js +++ /dev/null @@ -1,109 +0,0 @@ -var Montage = require("montage/core/core").Montage; -var Component = require("montage/ui/component").Component; - -var Tween = exports.Tween = Montage.create(Component, { - - hasTemplate:{ - value: true - }, - - _spanWidth: { - value: 0 - }, - - spanWidth: { - serializable:true, - get: function(){ - return this._spanWidth; - }, - set: function(value){ - this._spanWidth = value; - } - }, - - _spanPosition:{ - value: 0 - }, - - spanPosition:{ - serializable:true, - get:function () { - return this._spanPosition; - }, - set:function (value) { - this._spanPosition = value; - } - }, - - _keyFramePosition:{ - value:0 - }, - - keyFramePosition:{ - serializable:true, - get:function () { - return this._keyFramePosition; - }, - set:function (value) { - this._keyFramePosition = value; - } - }, - - _keyFrameMillisec:{ - value:0 - }, - - keyFrameMillisec:{ - serializable:true, - get:function () { - return this._keyFrameMillisec; - }, - set:function (value) { - this._keyFrameMillisec = value; - } - }, - - _keyframeID:{ - value:0 - }, - - keyframeID:{ - serializable:true, - get:function () { - return this._keyframeID; - }, - set:function (value) { - this._keyframeID = value; - } - }, - - _timelineTrack:{ - value:0 - }, - - timelineTrack:{ - serializable:true, - get:function () { - return this._timelineTrack; - }, - set:function (value) { - this._timelineTrack = value; - } - }, - - prepareForDraw:{ - value:function () { - this.keyframe.containingTrack = this.timelineTrack; - this.keyframe.position = this.spanWidth; - this.keyframe.timelinePosition = this.keyFramePosition; - this.keyframe.id = this.keyframeID; - } - }, - - draw:{ - value:function () { - this.span.spanWidth = this.spanWidth; - this.tweencontainer.style.left = this.spanPosition + "px"; - } - } -}); diff --git a/js/panels/Timeline/Tween.reel/css/Tween.css b/js/panels/Timeline/Tween.reel/css/Tween.css deleted file mode 100644 index 942f9fc9..00000000 --- a/js/panels/Timeline/Tween.reel/css/Tween.css +++ /dev/null @@ -1,4 +0,0 @@ -.tween_container{ - height: 16px; - position: absolute; -} \ No newline at end of file -- cgit v1.2.3