diff options
author | Jose Antonio Marquez | 2012-02-14 20:48:40 -0800 |
---|---|---|
committer | Jose Antonio Marquez | 2012-02-14 20:48:40 -0800 |
commit | 68ce64a5a2f4a71b54d33916aaf1d57161302425 (patch) | |
tree | b0fe3c0adb7434206fd79dfd6174994546a8d5c4 /js/document/views | |
parent | 93c8f327d662a7693d1d6ca050a0efd15ebc18ed (diff) | |
download | ninja-68ce64a5a2f4a71b54d33916aaf1d57161302425.tar.gz |
Reverting text/html document classes and setting up MVC folder structure
Setting up the folder structure for the proposed set up for documents in Ninja. Reverted to have a temp HTML/Text document class. Tweak some UI for file pickers.
Diffstat (limited to 'js/document/views')
-rwxr-xr-x | js/document/views/base-view.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/js/document/views/base-view.js b/js/document/views/base-view.js new file mode 100755 index 00000000..be441da2 --- /dev/null +++ b/js/document/views/base-view.js | |||
@@ -0,0 +1,32 @@ | |||
1 | /* <copyright> | ||
2 | This file contains proprietary software owned by Motorola Mobility, Inc.<br/> | ||
3 | No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.<br/> | ||
4 | (c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved. | ||
5 | </copyright> */ | ||
6 | |||
7 | //////////////////////////////////////////////////////////////////////// | ||
8 | // | ||
9 | var Montage = require("montage/core/core").Montage, | ||
10 | Component = require("montage/ui/component").Component; | ||
11 | //////////////////////////////////////////////////////////////////////// | ||
12 | // | ||
13 | exports.ENTERNAME = Montage.create(Montage, { | ||
14 | //////////////////////////////////////////////////////////////////// | ||
15 | // | ||
16 | hasTemplate: { | ||
17 | enumerable: false, | ||
18 | value: false | ||
19 | }, | ||
20 | //////////////////////////////////////////////////////////////////// | ||
21 | // | ||
22 | deserializedFromTemplate: { | ||
23 | enumerable: false, | ||
24 | value: function () { | ||
25 | // | ||
26 | } | ||
27 | } | ||
28 | //////////////////////////////////////////////////////////////////// | ||
29 | //////////////////////////////////////////////////////////////////// | ||
30 | }); | ||
31 | //////////////////////////////////////////////////////////////////////// | ||
32 | //////////////////////////////////////////////////////////////////////// \ No newline at end of file | ||