aboutsummaryrefslogtreecommitdiff
path: root/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html
diff options
context:
space:
mode:
authorAnanya Sen2012-04-16 18:19:17 -0700
committerAnanya Sen2012-04-16 18:19:17 -0700
commit2449fc403e8a8a22f092c87e3268a69a2be67e43 (patch)
tree71d660356892f98ce7a694c942d3fe132f171ac1 /js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html
parentc2ec390d42945d2df1aed3f2b7ff3d1aa722fce8 (diff)
downloadninja-2449fc403e8a8a22f092c87e3268a69a2be67e43.tar.gz
Added comment and uncomment control in the editor view options
Signed-off-by: Ananya Sen <Ananya.Sen@motorola.com>
Diffstat (limited to 'js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html')
-rw-r--r--js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html12
1 files changed, 10 insertions, 2 deletions
diff --git a/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html b/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html
index c6d3da4e..6698baa9 100644
--- a/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html
+++ b/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.html
@@ -36,7 +36,10 @@
36 "properties": { 36 "properties": {
37 "element": {"#": "viewOptions"}, 37 "element": {"#": "viewOptions"},
38 "codeCompleteCheck":{"@": "codeCompleteCheck"}, 38 "codeCompleteCheck":{"@": "codeCompleteCheck"},
39 "zoomHottext":{"@":"zoomHottext"} 39 "zoomHottext":{"@":"zoomHottext"},
40 "format":{"#": "format"},
41 "comment":{"#":"comment"},
42 "uncomment":{"#":"uncomment"}
40 } 43 }
41 } 44 }
42 } 45 }
@@ -47,8 +50,13 @@
47 <div> 50 <div>
48 <input class="zoomFont" id="zoomFont"/> 51 <input class="zoomFont" id="zoomFont"/>
49 <div class="autoCodeComplete" > 52 <div class="autoCodeComplete" >
50 <span>Automatic Code completion</span>
51 <input type="checkbox" id="codeComplete" /> 53 <input type="checkbox" id="codeComplete" />
54 <span>Automatic Completion</span>
55 </div>
56 <div class="floatButtons">
57 <!--<button id="format" value="format" class="nj-skinned format">Format</button>-->
58 <button id="comment" value="comment" class="nj-skinned format">comment</button>
59 <button id="uncomment" value="uncomment" class="nj-skinned format">uncomment</button>
52 </div> 60 </div>
53 </div> 61 </div>
54</div> 62</div>