diff options
Diffstat (limited to 'js/document/views/base.js')
-rwxr-xr-x | js/document/views/base.js | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/js/document/views/base.js b/js/document/views/base.js index fc380027..d1c65b5e 100755 --- a/js/document/views/base.js +++ b/js/document/views/base.js | |||
@@ -15,35 +15,27 @@ exports.BaseDocumentView = Montage.create(Component, { | |||
15 | //////////////////////////////////////////////////////////////////// | 15 | //////////////////////////////////////////////////////////////////// |
16 | // | 16 | // |
17 | hasTemplate: { | 17 | hasTemplate: { |
18 | enumerable: false, | ||
19 | value: false | 18 | value: false |
20 | }, | 19 | }, |
21 | //////////////////////////////////////////////////////////////////// | 20 | //////////////////////////////////////////////////////////////////// |
22 | // | 21 | // |
23 | parser: { | 22 | urlParser: { |
24 | enumerable: false, | ||
25 | value: UrlParser | 23 | value: UrlParser |
26 | }, | 24 | }, |
27 | //////////////////////////////////////////////////////////////////// | 25 | //////////////////////////////////////////////////////////////////// |
28 | // | 26 | // |
29 | _iframe: { | 27 | _iframe: { |
30 | enumerable: false, | ||
31 | value: null | 28 | value: null |
32 | }, | 29 | }, |
33 | //////////////////////////////////////////////////////////////////// | 30 | //////////////////////////////////////////////////////////////////// |
34 | // | 31 | // |
35 | iframe: { | 32 | iframe: { |
36 | get: function() { | 33 | get: function() {return this._iframe;}, |
37 | return this._iframe; | 34 | set: function(value) {this._iframe= value;} |
38 | }, | ||
39 | set: function(value) { | ||
40 | this._iframe= value; | ||
41 | } | ||
42 | }, | 35 | }, |
43 | //////////////////////////////////////////////////////////////////// | 36 | //////////////////////////////////////////////////////////////////// |
44 | // | 37 | // |
45 | show: { | 38 | show: { |
46 | enumerable: false, | ||
47 | value: function (callback) { | 39 | value: function (callback) { |
48 | if (this.iframe) { | 40 | if (this.iframe) { |
49 | this.iframe.style.display = 'block'; | 41 | this.iframe.style.display = 'block'; |
@@ -57,7 +49,6 @@ exports.BaseDocumentView = Montage.create(Component, { | |||
57 | //////////////////////////////////////////////////////////////////// | 49 | //////////////////////////////////////////////////////////////////// |
58 | // | 50 | // |
59 | hide: { | 51 | hide: { |
60 | enumerable: false, | ||
61 | value: function (callback) { | 52 | value: function (callback) { |
62 | if (this.iframe) { | 53 | if (this.iframe) { |
63 | this.iframe.style.display = 'none'; | 54 | this.iframe.style.display = 'none'; |