aboutsummaryrefslogtreecommitdiff
path: root/js/panels/Timeline/TrackSpacer.reel
diff options
context:
space:
mode:
authorKruti Shah2012-07-03 12:47:26 -0700
committerKruti Shah2012-07-03 12:47:26 -0700
commitf9c592ac8284cace4daed6f2ac87fe15dfad873c (patch)
treefea56cfce6befc13911c6d3ecca7bc952da0ea2c /js/panels/Timeline/TrackSpacer.reel
parent0d7918cb127f06adab5515edde72dccc137473f5 (diff)
downloadninja-f9c592ac8284cace4daed6f2ac87fe15dfad873c.tar.gz
Refactoring PropertyTrack.js & Span.js
Signed-off-by: Kruti Shah <kruti.shah@motorola.com>
Diffstat (limited to 'js/panels/Timeline/TrackSpacer.reel')
-rw-r--r--js/panels/Timeline/TrackSpacer.reel/TrackSpacer.html30
-rw-r--r--js/panels/Timeline/TrackSpacer.reel/TrackSpacer.js21
-rw-r--r--js/panels/Timeline/TrackSpacer.reel/css/TrackSpacer.css11
3 files changed, 0 insertions, 62 deletions
diff --git a/js/panels/Timeline/TrackSpacer.reel/TrackSpacer.html b/js/panels/Timeline/TrackSpacer.reel/TrackSpacer.html
deleted file mode 100644
index 54944e5d..00000000
--- a/js/panels/Timeline/TrackSpacer.reel/TrackSpacer.html
+++ /dev/null
@@ -1,30 +0,0 @@
1<!DOCTYPE html>
2<!-- <copyright>
3 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
4 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
5 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
6 </copyright> -->
7<html lang="en">
8 <head>
9 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
10 <link rel="stylesheet" type="text/css" href="css/TrackSpacer.css">
11 <script type="text/montage-serialization">
12 {
13 "owner": {
14 "prototype": "js/panels/Timeline/TrackSpacer.reel",
15 "properties": {
16 "element": {"#": "trackspace"}
17 }
18 }
19
20 }
21 </script>
22 </head>
23 <body>
24
25 <div data-montage-id="trackspace">
26 <div data-montage-id="track_spacer" class="trackspacer"></div>
27 </div>
28
29 </body>
30</html> \ No newline at end of file
diff --git a/js/panels/Timeline/TrackSpacer.reel/TrackSpacer.js b/js/panels/Timeline/TrackSpacer.reel/TrackSpacer.js
deleted file mode 100644
index f1b5407a..00000000
--- a/js/panels/Timeline/TrackSpacer.reel/TrackSpacer.js
+++ /dev/null
@@ -1,21 +0,0 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6
7var Montage = require("montage/core/core").Montage;
8var Component = require("montage/ui/component").Component;
9
10var TrackSpacer = exports.TrackSpacer = Montage.create(Component, {
11
12 hasTemplate:{
13 value: true
14 },
15
16 prepareForDraw:{
17 value:function(){
18
19 }
20 }
21});
diff --git a/js/panels/Timeline/TrackSpacer.reel/css/TrackSpacer.css b/js/panels/Timeline/TrackSpacer.reel/css/TrackSpacer.css
deleted file mode 100644
index b98b555d..00000000
--- a/js/panels/Timeline/TrackSpacer.reel/css/TrackSpacer.css
+++ /dev/null
@@ -1,11 +0,0 @@
1/* <copyright>
2 This file contains proprietary software owned by Motorola Mobility, Inc.<br/>
3 No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/>
4 (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
5 </copyright> */
6
7.trackspacer{
8 height:22px;
9 width: 100%;
10 background-color: #4d4d4d;
11} \ No newline at end of file