diff options
author | Valerio Virgillito | 2012-02-17 15:24:49 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-02-17 15:24:49 -0800 |
commit | 7789a48fab2b1541ef7ac1b94e14b3f8dccbb4ff (patch) | |
tree | 328e6fe964cfcbe6ff47ad6eecf81275da31364f /js/document/text-document.js | |
parent | 824927fde259c891a67f18311a8abc470cd48442 (diff) | |
parent | 041abe1f27378f095d3a6d5584559463959e0787 (diff) | |
download | ninja-7789a48fab2b1541ef7ac1b94e14b3f8dccbb4ff.tar.gz |
Merge pull request #53 from joseeight/FileIO
File IO local files webRequest redirect
Diffstat (limited to 'js/document/text-document.js')
-rwxr-xr-x | js/document/text-document.js | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/js/document/text-document.js b/js/document/text-document.js index 6f8efaad..3e20e1f6 100755 --- a/js/document/text-document.js +++ b/js/document/text-document.js | |||
@@ -6,9 +6,10 @@ No rights, expressed or implied, whatsoever to this software are provided by Mot | |||
6 | 6 | ||
7 | //BaseDocument Object for all files types and base class for HTML documents. | 7 | //BaseDocument Object for all files types and base class for HTML documents. |
8 | 8 | ||
9 | var Montage = require("montage/core/core").Montage; | 9 | var Montage = require("montage/core/core").Montage, |
10 | Component = require("montage/ui/component").Component; | ||
10 | 11 | ||
11 | var TextDocument = exports.TextDocument = Montage.create(Montage, { | 12 | var TextDocument = exports.TextDocument = Montage.create(Component, { |
12 | 13 | ||
13 | 14 | ||
14 | //TODO: Clean up, test | 15 | //TODO: Clean up, test |