aboutsummaryrefslogtreecommitdiff
path: root/js/components/ui
diff options
context:
space:
mode:
authorAnanya Sen2012-05-03 11:31:09 -0700
committerAnanya Sen2012-05-03 11:31:09 -0700
commit6cc9ba557dd47f407acc6b7f7527f5f2df61b362 (patch)
tree688bbcca620cc999debc4ef9271f87061b6a07a8 /js/components/ui
parent9f654de3c56475b8e9d34183eb6dd9f2d0381b76 (diff)
downloadninja-6cc9ba557dd47f407acc6b7f7527f5f2df61b362.tar.gz
use data-montage-id instead of id in template
Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com> Conflicts: js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
Diffstat (limited to 'js/components/ui')
-rwxr-xr-xjs/components/ui/icon-list-basic/icon.reel/icon.html6
-rwxr-xr-xjs/components/ui/icon-list-basic/iconsList.reel/iconsList.html6
-rwxr-xr-xjs/components/ui/tree-basic/tree.reel/tree.html6
-rwxr-xr-xjs/components/ui/tree-basic/treeItem.reel/treeItem.html8
4 files changed, 13 insertions, 13 deletions
diff --git a/js/components/ui/icon-list-basic/icon.reel/icon.html b/js/components/ui/icon-list-basic/icon.reel/icon.html
index f2406566..2ad5885a 100755
--- a/js/components/ui/icon-list-basic/icon.reel/icon.html
+++ b/js/components/ui/icon-list-basic/icon.reel/icon.html
@@ -22,9 +22,9 @@
22 </script> 22 </script>
23</head> 23</head>
24<body> 24<body>
25<div id="icon" class="icon"> 25<div data-montage-id="icon" class="icon">
26 <div><img id="iconImg" class="iconImg" src="" /></div> 26 <div><img data-montage-id="iconImg" class="iconImg" src="" /></div>
27 <div id="iconLabel" class="iconLabel"></div> 27 <div data-montage-id="iconLabel" class="iconLabel"></div>
28</div> 28</div>
29</body> 29</body>
30</html> \ No newline at end of file 30</html> \ No newline at end of file
diff --git a/js/components/ui/icon-list-basic/iconsList.reel/iconsList.html b/js/components/ui/icon-list-basic/iconsList.reel/iconsList.html
index 35260527..05d3ea7d 100755
--- a/js/components/ui/icon-list-basic/iconsList.reel/iconsList.html
+++ b/js/components/ui/icon-list-basic/iconsList.reel/iconsList.html
@@ -55,9 +55,9 @@
55 </script> 55 </script>
56</head> 56</head>
57<body> 57<body>
58<div id="list" class="list"> 58<div data-montage-id="list" class="list">
59 <div id="iconsView"> 59 <div data-montage-id="iconsView">
60 <div id="icon"></div> 60 <div data-montage-id="icon"></div>
61 </div> 61 </div>
62</div> 62</div>
63</body> 63</body>
diff --git a/js/components/ui/tree-basic/tree.reel/tree.html b/js/components/ui/tree-basic/tree.reel/tree.html
index f0c51fcc..1144b563 100755
--- a/js/components/ui/tree-basic/tree.reel/tree.html
+++ b/js/components/ui/tree-basic/tree.reel/tree.html
@@ -65,9 +65,9 @@
65 </script> 65 </script>
66</head> 66</head>
67<body> 67<body>
68<div id="atree" class="atree"> 68<div data-montage-id="atree" class="atree">
69 <ul id="treeView" style="display:block;"> 69 <ul data-montage-id="treeView" style="display:block;">
70 <li id="treeItem"></li> 70 <li data-montage-id="treeItem"></li>
71 </ul> 71 </ul>
72</div> 72</div>
73</body> 73</body>
diff --git a/js/components/ui/tree-basic/treeItem.reel/treeItem.html b/js/components/ui/tree-basic/treeItem.reel/treeItem.html
index 9b8cb1ea..c5cdc533 100755
--- a/js/components/ui/tree-basic/treeItem.reel/treeItem.html
+++ b/js/components/ui/tree-basic/treeItem.reel/treeItem.html
@@ -23,12 +23,12 @@
23 </script> 23 </script>
24</head> 24</head>
25<body> 25<body>
26<li id="atreeItem" class="atreeItem"> 26<li data-montage-id="atreeItem" class="atreeItem">
27 <span id="treeArrow" class="treeArrow hidden">&#9654;</span> 27 <span data-montage-id="treeArrow" class="treeArrow hidden">&#9654;</span>
28 <div class="atreeItemContent atreeItemImgContainer" > 28 <div class="atreeItemContent atreeItemImgContainer" >
29 <img id="atreeItemImg" class="atreeItemImg" src="" /> 29 <img data-montage-id="atreeItemImg" class="atreeItemImg" src="" />
30 </div> 30 </div>
31 <span id="name" class="atreeItemContent name"></span> 31 <span data-montage-id="name" class="atreeItemContent name"></span>
32</li> 32</li>
33</body> 33</body>
34</html> \ No newline at end of file 34</html> \ No newline at end of file