aboutsummaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorValerio Virgillito2012-05-03 17:16:04 -0700
committerValerio Virgillito2012-05-03 17:16:04 -0700
commit2f21eb37a4e7afb4ba3273b3ec50964717448b2f (patch)
tree7769526ee11dc7886f5b56ea6952be4d081a56f4 /js
parentf7a493acab51684bc557174ebaba6e80a4869df7 (diff)
downloadninja-2f21eb37a4e7afb4ba3273b3ec50964717448b2f.tar.gz
Removing more id and changing the appropriate CSS for them
Signed-off-by: Valerio Virgillito <valerio@motorola.com>
Diffstat (limited to 'js')
-rw-r--r--js/components/about-box.reel/about-box.html2
-rwxr-xr-xjs/components/layout/document-entry.reel/document-entry.html2
-rwxr-xr-xjs/components/tools-properties/pen-properties.reel/pen-properties.html2
-rwxr-xr-xjs/components/tools-properties/selection-properties.reel/selection-properties.html2
-rw-r--r--js/components/treeview/branch.reel/branch.html8
-rw-r--r--js/components/treeview/leaf.reel/leaf.html4
-rw-r--r--js/components/treeview/ninja-branch.reel/ninja-branch.html10
-rw-r--r--js/components/treeview/ninja-leaf.reel/ninja-leaf.html4
-rw-r--r--js/components/treeview/treeview.reel/treeview.html4
-rwxr-xr-xjs/io/ui/cloudpopup.reel/cloudpopup.html2
-rwxr-xr-xjs/ninja.reel/ninja.html42
11 files changed, 40 insertions, 42 deletions
diff --git a/js/components/about-box.reel/about-box.html b/js/components/about-box.reel/about-box.html
index 1f41699e..ecdd4389 100644
--- a/js/components/about-box.reel/about-box.html
+++ b/js/components/about-box.reel/about-box.html
@@ -21,7 +21,7 @@
21 </script> 21 </script>
22</head> 22</head>
23<body> 23<body>
24<div class="mainAboutBoxContainer" id="mainAboutBoxContainer"> 24<div data-montage-id="mainAboutBoxContainer" class="mainAboutBoxContainer">
25 <div id="about_box_ninja_logo"></div> 25 <div id="about_box_ninja_logo"></div>
26 <div id="aboutBoxTextBlock" class="baseAboutBoxText"> 26 <div id="aboutBoxTextBlock" class="baseAboutBoxText">
27 <p class="mediumAboutBoxText">Version: <span id="aboutBoxVersionNumber">0.0.0.0</span></p> 27 <p class="mediumAboutBoxText">Version: <span id="aboutBoxVersionNumber">0.0.0.0</span></p>
diff --git a/js/components/layout/document-entry.reel/document-entry.html b/js/components/layout/document-entry.reel/document-entry.html
index 8fd978a3..679ebb62 100755
--- a/js/components/layout/document-entry.reel/document-entry.html
+++ b/js/components/layout/document-entry.reel/document-entry.html
@@ -25,7 +25,7 @@
25 <body> 25 <body>
26 <li data-montage-id="documentEntry" class="documentEntry"> 26 <li data-montage-id="documentEntry" class="documentEntry">
27 <div data-montage-id="isActive"></div> 27 <div data-montage-id="isActive"></div>
28 <span id="name"></span> 28 <span data-montage-id="name"></span>
29 <img src="js/components/layout/document-entry.reel/close_button.gif"> 29 <img src="js/components/layout/document-entry.reel/close_button.gif">
30 </li> 30 </li>
31 </body> 31 </body>
diff --git a/js/components/tools-properties/pen-properties.reel/pen-properties.html b/js/components/tools-properties/pen-properties.reel/pen-properties.html
index b3221456..68ab85f6 100755
--- a/js/components/tools-properties/pen-properties.reel/pen-properties.html
+++ b/js/components/tools-properties/pen-properties.reel/pen-properties.html
@@ -38,7 +38,7 @@
38 38
39 <body> 39 <body>
40 <div data-montage-id="penProperties" class="subToolHolderPanel"> 40 <div data-montage-id="penProperties" class="subToolHolderPanel">
41 <div da="strokesContainer" class="leftLabel" style="margin-left:25px; padding-top: 3px;"> 41 <div id="strokesContainer" class="leftLabel" style="margin-left:25px; padding-top: 3px;">
42 <label class="label"> Stroke:</label> 42 <label class="label"> Stroke:</label>
43 <div data-montage-id="strokeSize" class="label"></div> 43 <div data-montage-id="strokeSize" class="label"></div>
44 </div> 44 </div>
diff --git a/js/components/tools-properties/selection-properties.reel/selection-properties.html b/js/components/tools-properties/selection-properties.reel/selection-properties.html
index 728ffb0a..b93aacd0 100755
--- a/js/components/tools-properties/selection-properties.reel/selection-properties.html
+++ b/js/components/tools-properties/selection-properties.reel/selection-properties.html
@@ -26,7 +26,7 @@
26 26
27 <body> 27 <body>
28 <div data-montage-id="selectionProperties" class="subToolHolderPanel"> 28 <div data-montage-id="selectionProperties" class="subToolHolderPanel">
29 <label class="label subOption optionLabel"><input id="transformCheck" type="checkbox" name="transformControl" class="checkBoxAlign"/>Transform Controls</label> 29 <label class="label subOption optionLabel"><input data-montage-id="transformCheck" type="checkbox" name="transformControl" class="checkBoxAlign"/>Transform Controls</label>
30 <div id="toolPropertiesPanel-selectionDivOptions"> 30 <div id="toolPropertiesPanel-selectionDivOptions">
31 <div class="subOption"><div id="topAlign" class="topAlignUp" title="Top Align"></div></div> 31 <div class="subOption"><div id="topAlign" class="topAlignUp" title="Top Align"></div></div>
32 <div class="subOption"><div id="rightAlign" class="rightAlignUp" title="Right Align"></div></div> 32 <div class="subOption"><div id="rightAlign" class="rightAlignUp" title="Right Align"></div></div>
diff --git a/js/components/treeview/branch.reel/branch.html b/js/components/treeview/branch.reel/branch.html
index 97b03382..d3060d96 100644
--- a/js/components/treeview/branch.reel/branch.html
+++ b/js/components/treeview/branch.reel/branch.html
@@ -129,11 +129,11 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot
129 </script> 129 </script>
130</head> 130</head>
131<body> 131<body>
132 <div id="branch" class="branch"> 132 <div data-montage-id="branch" class="branch">
133 <span id="label" class="branch-label"></span> 133 <span data-montage-id="label" class="branch-label"></span>
134 134
135 <ul id="branchList"> 135 <ul data-montage-id="branchList">
136 <li id="treeItem"></li> 136 <li data-montage-id="treeItem"></li>
137 </ul> 137 </ul>
138 </div> 138 </div>
139</body> 139</body>
diff --git a/js/components/treeview/leaf.reel/leaf.html b/js/components/treeview/leaf.reel/leaf.html
index 360b85a9..a644d4f9 100644
--- a/js/components/treeview/leaf.reel/leaf.html
+++ b/js/components/treeview/leaf.reel/leaf.html
@@ -34,8 +34,8 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot
34 </script> 34 </script>
35</head> 35</head>
36<body> 36<body>
37 <div id="leaf" class="leaf"> 37 <div data-montage-id="leaf" class="leaf">
38 <span id="label" class="leaf-label"></span> 38 <span data-montage-id="label" class="leaf-label"></span>
39 </div> 39 </div>
40</body> 40</body>
41</html> \ No newline at end of file 41</html> \ No newline at end of file
diff --git a/js/components/treeview/ninja-branch.reel/ninja-branch.html b/js/components/treeview/ninja-branch.reel/ninja-branch.html
index 3a3f3658..60894fbc 100644
--- a/js/components/treeview/ninja-branch.reel/ninja-branch.html
+++ b/js/components/treeview/ninja-branch.reel/ninja-branch.html
@@ -131,11 +131,11 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot
131 </script> 131 </script>
132</head> 132</head>
133<body> 133<body>
134 <div id="branch" class="branch"> 134 <div data-montage-id="branch" class="branch">
135 <div id="label" class="branch-label"></div> 135 <div data-montage-id="label" class="branch-label"></div>
136 <div id="branchCollapser" class="branchCollapser"> 136 <div data-montage-id="branchCollapser" class="branchCollapser">
137 <ul id="branchList"> 137 <ul data-montage-id="branchList">
138 <li id="treeItem"></li> 138 <li data-montage-id="treeItem"></li>
139 </ul> 139 </ul>
140 </div> 140 </div>
141 141
diff --git a/js/components/treeview/ninja-leaf.reel/ninja-leaf.html b/js/components/treeview/ninja-leaf.reel/ninja-leaf.html
index b759b723..6d00bb21 100644
--- a/js/components/treeview/ninja-leaf.reel/ninja-leaf.html
+++ b/js/components/treeview/ninja-leaf.reel/ninja-leaf.html
@@ -34,8 +34,8 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot
34 </script> 34 </script>
35</head> 35</head>
36<body> 36<body>
37 <div id="leaf" class="leaf"> 37 <div data-montage-id="leaf" class="leaf">
38 <div id="label" class="leaf-label" draggable="true"></div> 38 <div data-montage-id="label" class="leaf-label" draggable="true"></div>
39 </div> 39 </div>
40</body> 40</body>
41</html> \ No newline at end of file 41</html> \ No newline at end of file
diff --git a/js/components/treeview/treeview.reel/treeview.html b/js/components/treeview/treeview.reel/treeview.html
index 3ef9f116..1bed0f0b 100644
--- a/js/components/treeview/treeview.reel/treeview.html
+++ b/js/components/treeview/treeview.reel/treeview.html
@@ -43,8 +43,8 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot
43 </script> 43 </script>
44</head> 44</head>
45<body> 45<body>
46 <div id="treeView" class="treeView"> 46 <div data-montage-id="treeView" class="treeView">
47 <div id="rootBranch" class="treeRoot"></div> 47 <div data-montage-id="rootBranch" class="treeRoot"></div>
48 </div> 48 </div>
49</body> 49</body>
50</html> \ No newline at end of file 50</html> \ No newline at end of file
diff --git a/js/io/ui/cloudpopup.reel/cloudpopup.html b/js/io/ui/cloudpopup.reel/cloudpopup.html
index a75266a3..753597e7 100755
--- a/js/io/ui/cloudpopup.reel/cloudpopup.html
+++ b/js/io/ui/cloudpopup.reel/cloudpopup.html
@@ -28,7 +28,7 @@
28 28
29 <body> 29 <body>
30 30
31 <div id="cloud_popup" class="cloud_popup"> 31 <div data-montage-id="cloud_popup" class="cloud_popup">
32 <div class="content"> 32 <div class="content">
33 33
34 <h3>Cloud Service Dialog</h3> 34 <h3>Cloud Service Dialog</h3>
diff --git a/js/ninja.reel/ninja.html b/js/ninja.reel/ninja.html
index 34dc8135..b18c79b9 100755
--- a/js/ninja.reel/ninja.html
+++ b/js/ninja.reel/ninja.html
@@ -364,10 +364,10 @@
364</head> 364</head>
365<body> 365<body>
366 366
367 <div id="main" class="main"> 367 <div data-montage-id="main" class="main">
368 368
369 <section id="topMenu"> 369 <section id="topMenu">
370 <nav id="mainMenuBar"></nav> 370 <nav data-montage-id="mainMenuBar"></nav>
371 </section> 371 </section>
372 372
373 <section data-montage-id="leftSplitter" class="leftSplitter splitter"></section> 373 <section data-montage-id="leftSplitter" class="leftSplitter splitter"></section>
@@ -377,22 +377,20 @@
377 <section id="appContainer"> 377 <section id="appContainer">
378 <section data-montage-id="topSplitter" class="topSplitter splitter"></section> 378 <section data-montage-id="topSplitter" class="topSplitter splitter"></section>
379 379
380 <section id="topPanelContainer" class="panelContainer"> 380 <section data-montage-id="topPanelContainer" id="topPanelContainer" class="panelContainer">
381 <div id="topPanel" class="panel"> 381 <div id="topPanel" class="panel">
382 <div id="toolPropertiesPanel"> 382 <div id="toolPropertiesPanel">
383 <div id="toolsProperties"></div> 383 <div data-montage-id="toolsProperties"></div>
384 </div> 384 </div>
385 385
386 <div id="stageMode" class="unselectable marginposition"> 386 <div data-montage-id="stageMode" class="unselectable marginposition"></div>
387 <!--<div id="stageModeImg" class="unselectable editMode"></div>-->
388 </div>
389 </div> 387 </div>
390 </section>