diff options
author | Ananya Sen | 2012-06-19 11:00:49 -0700 |
---|---|---|
committer | Ananya Sen | 2012-06-19 11:00:49 -0700 |
commit | f1d8401aeb84e0eb0680caf72878dae26fd78a37 (patch) | |
tree | 31771ccaf3d1e2ddf01fa9605438d20be0d155d7 /js/code-editor/ui | |
parent | 9ea2610cec6569e7b7d5268b6c65bbf94c4753e5 (diff) | |
parent | 483ad57efcd6475776f580c3af5b60e6deeaf781 (diff) | |
download | ninja-f1d8401aeb84e0eb0680caf72878dae26fd78a37.tar.gz |
Merge branch 'refs/heads/ninja-internal-master' into cut-copy-paste
Diffstat (limited to 'js/code-editor/ui')
-rw-r--r-- | js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.js | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.js b/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.js index dabce6e0..13c9a705 100644 --- a/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.js +++ b/js/code-editor/ui/code-editor-view-options.reel/code-editor-view-options.js | |||
@@ -52,6 +52,11 @@ exports.CodeEditorViewOptions = Montage.create(Component, { | |||
52 | } | 52 | } |
53 | }, | 53 | }, |
54 | 54 | ||
55 | autoCompleteLabel: { | ||
56 | value: null, | ||
57 | serializable: true | ||
58 | }, | ||
59 | |||
55 | _autocomplete: { | 60 | _autocomplete: { |
56 | value: false | 61 | value: false |
57 | }, | 62 | }, |
@@ -73,7 +78,33 @@ exports.CodeEditorViewOptions = Montage.create(Component, { | |||
73 | }, | 78 | }, |
74 | 79 | ||
75 | codeCompleteCheck: { | 80 | codeCompleteCheck: { |
76 | value: null | 81 | value: null, |
82 | serializable: true | ||
83 | }, | ||
84 | |||
85 | zoomHottext: { | ||
86 | value: null, | ||
87 | serializable: true | ||
88 | }, | ||
89 | |||
90 | comment: { | ||
91 | value: null, | ||
92 | serializable: true | ||
93 | }, | ||
94 | |||
95 | uncomment: { | ||
96 | value: null, | ||
97 | serializable: true | ||
98 | }, | ||
99 | |||
100 | themeSelect: { | ||
101 | value: null, | ||
102 | serializable: true | ||
103 | }, | ||
104 | |||
105 | shortKeys: { | ||
106 | value: null, | ||
107 | serializable: true | ||
77 | }, | 108 | }, |
78 | 109 | ||
79 | prepareForDraw: { | 110 | prepareForDraw: { |