aboutsummaryrefslogtreecommitdiff
path: root/js/components/ui
diff options
context:
space:
mode:
authorNivesh Rajbhandari2012-04-30 16:04:13 -0700
committerNivesh Rajbhandari2012-04-30 16:04:13 -0700
commit6b67b498b3b1eec82e7bb7f34261e2c390506616 (patch)
tree3874b52284763c066f040a8f594bde8aee2cd20e /js/components/ui
parente46d154b7821741618bf999c9216761ea36ad003 (diff)
downloadninja-6b67b498b3b1eec82e7bb7f34261e2c390506616.tar.gz
Updating id to data-montage-id (and associated CSS, if necessary) in some of our custom ui controls (such as hottest, slider, etc.), materials panels and three-d section of the PI.
Signed-off-by: Nivesh Rajbhandari <mqg734@motorola.com>
Diffstat (limited to 'js/components/ui')
-rwxr-xr-xjs/components/ui/color-chip.reel/color-chip.html12
-rwxr-xr-xjs/components/ui/file-input.reel/file-input.html6
-rwxr-xr-xjs/components/ui/input-group.reel/input-group.html6
-rwxr-xr-xjs/components/ui/property-control.reel/property-control.html8
4 files changed, 15 insertions, 17 deletions
diff --git a/js/components/ui/color-chip.reel/color-chip.html b/js/components/ui/color-chip.reel/color-chip.html
index 8f10092d..647f7e79 100755
--- a/js/components/ui/color-chip.reel/color-chip.html
+++ b/js/components/ui/color-chip.reel/color-chip.html
@@ -23,13 +23,11 @@
23</head> 23</head>
24<body> 24<body>
25 <!-- TODO: This should not use the 'colortoolbar' class, this is the wrong application of this class --> 25 <!-- TODO: This should not use the 'colortoolbar' class, this is the wrong application of this class -->
26 <div id="colorChipContainer" class="colortoolbar"> 26 <div data-montage-id="colorChipContainer" class="colortoolbar">
27 27 <div data-montage-id="chipIcon"></div>
28 <div id="chipIcon"></div> 28 <div class="chipContainer">
29 29 <button data-montage-id="chipButton"></button>
30 <div class="chipContainer"><button id="chipButton"></button></div> 30 </div>
31
32 </div> 31 </div>
33
34</body> 32</body>
35</html> \ No newline at end of file 33</html> \ No newline at end of file
diff --git a/js/components/ui/file-input.reel/file-input.html b/js/components/ui/file-input.reel/file-input.html
index 0c3c465e..735f970c 100755
--- a/js/components/ui/file-input.reel/file-input.html
+++ b/js/components/ui/file-input.reel/file-input.html
@@ -22,9 +22,9 @@
22 </script> 22 </script>
23</head> 23</head>
24<body> 24<body>
25 <div id="fileInput" class="fileInput"> 25 <div data-montage-id="fileInput" class="fileInput">
26 <input id="fileInputTextField" class="file-path nj-skinned" type="text" /> 26 <input data-montage-id="fileInputTextField" class="file-path nj-skinned" type="text" />
27 <input id="fileInputControl" class="browse-button" type="file" /> 27 <input data-montage-id="fileInputControl" class="browse-button" type="file" />
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/input-group.reel/input-group.html b/js/components/ui/input-group.reel/input-group.html
index 4cdb4e69..ba85c089 100755
--- a/js/components/ui/input-group.reel/input-group.html
+++ b/js/components/ui/input-group.reel/input-group.html
@@ -65,9 +65,9 @@
65 </script> 65 </script>
66</head> 66</head>
67<body> 67<body>
68 <div id="inputRow" class="inputRow" style="-webkit-user-select: none;"> 68 <div data-montage-id="inputRow" class="inputRow" style="-webkit-user-select: none;">
69 <div id="inputList"> 69 <div data-montage-id="inputList">
70 <div id="inputPair"></div> 70 <div data-montage-id="inputPair"></div>
71 </div> 71 </div>
72 </div> 72 </div>
73</body> 73</body>
diff --git a/js/components/ui/property-control.reel/property-control.html b/js/components/ui/property-control.reel/property-control.html
index d85cb0e3..0535ea5f 100755
--- a/js/components/ui/property-control.reel/property-control.html
+++ b/js/components/ui/property-control.reel/property-control.html
@@ -28,10 +28,10 @@
28 </script> 28 </script>
29</head> 29</head>
30<body> 30<body>
31 <div id="propControl" class="propControl"> 31 <div data-montage-id="propControl" class="propControl">
32 <div id="propLabel" class="prop-label"></div> 32 <div data-montage-id="propLabel" class="prop-label"></div>
33 <div id="propController" class="prop-controller"> 33 <div data-montage-id="propController" class="prop-controller">
34 <div id="subDummy"></div> 34 <div data-montage-id="subDummy"></div>
35 </div> 35 </div>
36 </div> 36 </div>
37</body> 37</body>