aboutsummaryrefslogtreecommitdiff
path: root/js/document/controllers
diff options
context:
space:
mode:
authorKris Kowal2012-07-06 11:52:06 -0700
committerKris Kowal2012-07-06 15:01:48 -0700
commit648ee61ae84216d0236e0dbc211addc13b2cfa3a (patch)
tree8f0f55557bd0c47a84e49c1977c950645d284607 /js/document/controllers
parentaedd14b18695d031f695d27dfbd94df5614495bb (diff)
downloadninja-648ee61ae84216d0236e0dbc211addc13b2cfa3a.tar.gz
Expand tabs
Diffstat (limited to 'js/document/controllers')
-rwxr-xr-xjs/document/controllers/document.js36
1 files changed, 18 insertions, 18 deletions
diff --git a/js/document/controllers/document.js b/js/document/controllers/document.js
index 1b1e1b85..8033c2e9 100755
--- a/js/document/controllers/document.js
+++ b/js/document/controllers/document.js
@@ -30,40 +30,40 @@ POSSIBILITY OF SUCH DAMAGE.
30 30
31//////////////////////////////////////////////////////////////////////// 31////////////////////////////////////////////////////////////////////////
32// 32//
33var Montage = require("montage/core/core").Montage, 33var Montage = require("montage/core/core").Montage,
34 Component = require("montage/ui/component").Component; 34 Component = require("montage/ui/component").Component;
35//////////////////////////////////////////////////////////////////////// 35////////////////////////////////////////////////////////////////////////
36// 36//
37exports.DocumentController = Montage.create(Component, { 37exports.DocumentController = Montage.create(Component, {
38 //////////////////////////////////////////////////////////////////// 38 ////////////////////////////////////////////////////////////////////
39 // 39 //
40 hasTemplate: { 40 hasTemplate: {
41 enumerable: false, 41 enumerable: false,
42 value: false 42 value: false
43 }, 43 },
44 //////////////////////////////////////////////////////////////////// 44 ////////////////////////////////////////////////////////////////////
45 // 45 //
46 save: { 46 save: {
47 value: function () { 47 value: function () {
48 // 48 //
49 } 49 }
50 }, 50 },
51 //////////////////////////////////////////////////////////////////// 51 ////////////////////////////////////////////////////////////////////
52 // 52 //
53 saveAs: { 53 saveAs: {
54 value: function () { 54 value: function () {
55 // 55 //
56 } 56 }
57 }, 57 },
58 //////////////////////////////////////////////////////////////////// 58 ////////////////////////////////////////////////////////////////////
59 // 59 //
60 close: { 60 close: {
61 value: function () { 61 value: function () {
62 // 62 //
63 } 63 }
64 } 64 }
65 //////////////////////////////////////////////////////////////////// 65 ////////////////////////////////////////////////////////////////////
66 //////////////////////////////////////////////////////////////////// 66 ////////////////////////////////////////////////////////////////////
67}); 67});
68//////////////////////////////////////////////////////////////////////// 68////////////////////////////////////////////////////////////////////////
69//////////////////////////////////////////////////////////////////////// 69////////////////////////////////////////////////////////////////////////