diff options
author | Valerio Virgillito | 2012-05-16 20:30:05 -0700 |
---|---|---|
committer | Valerio Virgillito | 2012-05-16 20:30:05 -0700 |
commit | d34c57638ef57fb9fedfdb8fa7add895bc585f8e (patch) | |
tree | 7d3f51c20eb6b6940c1ce648d828fa1e2d8d510b /js/panels | |
parent | 92fcb770aff434e994e7a39a61d8fac4a017dca0 (diff) | |
parent | d59cb51c275fbbef84604f9ed77afedba8168099 (diff) | |
download | ninja-d34c57638ef57fb9fedfdb8fa7add895bc585f8e.tar.gz |
Merge pull request #241 from joseeight/Document
Adding saving of Montage Components
Diffstat (limited to 'js/panels')
-rwxr-xr-x | js/panels/components-panel.reel/components-panel.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/panels/components-panel.reel/components-panel.js b/js/panels/components-panel.reel/components-panel.js index 37fd9b44..e028d1db 100755 --- a/js/panels/components-panel.reel/components-panel.js +++ b/js/panels/components-panel.reel/components-panel.js | |||
@@ -6,9 +6,9 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
6 | 6 | ||
7 | var Montage = require("montage/core/core").Montage, | 7 | var Montage = require("montage/core/core").Montage, |
8 | Component = require("montage/ui/component").Component, | 8 | Component = require("montage/ui/component").Component, |
9 | ClassUUID = require("js/components/core/class-uuid").ClassUuid; | 9 | NJUtils = require("js/lib/NJUtils").NJUtils; |
10 | 10 | ClassUUID = require("js/components/core/class-uuid").ClassUuid, | |
11 | var PIData = require("js/data/pi/pi-data").PiData; | 11 | PIData = require("js/data/pi/pi-data").PiData; |
12 | 12 | ||
13 | String.prototype.capitalizeFirstChar = function() { | 13 | String.prototype.capitalizeFirstChar = function() { |
14 | return this.charAt(0).toUpperCase() + this.slice(1); | 14 | return this.charAt(0).toUpperCase() + this.slice(1); |