diff options
Diffstat (limited to 'js/document/templates')
-rw-r--r-- | js/document/templates/app/main.js | 4 | ||||
-rwxr-xr-x | js/document/templates/html/index.html | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/js/document/templates/app/main.js b/js/document/templates/app/main.js index 8dc05ba5..7737ae4c 100644 --- a/js/document/templates/app/main.js +++ b/js/document/templates/app/main.js | |||
@@ -61,7 +61,7 @@ exports.Main = Montage.create(Component, { | |||
61 | var componentRequire = component[data.name]; | 61 | var componentRequire = component[data.name]; |
62 | var componentInstance = componentRequire.create(); | 62 | var componentInstance = componentRequire.create(); |
63 | 63 | ||
64 | 64 | componentInstance._montage_metadata.label = componentInstance.identifier = data.name; | |
65 | componentInstance.addEventListener("firstDraw", self, false); | 65 | componentInstance.addEventListener("firstDraw", self, false); |
66 | 66 | ||
67 | componentInstance.element = element; | 67 | componentInstance.element = element; |
@@ -69,8 +69,6 @@ exports.Main = Montage.create(Component, { | |||
69 | componentInstance.ownerComponent = self; | 69 | componentInstance.ownerComponent = self; |
70 | 70 | ||
71 | self.componentToInsert = componentInstance; | 71 | self.componentToInsert = componentInstance; |
72 | |||
73 | |||
74 | callback(componentInstance, element); | 72 | callback(componentInstance, element); |
75 | }) | 73 | }) |
76 | .end(); | 74 | .end(); |
diff --git a/js/document/templates/html/index.html b/js/document/templates/html/index.html index 8fc0d82f..bee2e557 100755 --- a/js/document/templates/html/index.html +++ b/js/document/templates/html/index.html | |||
@@ -113,7 +113,10 @@ | |||
113 | <script type="text/montage-serialization" data-ninja-template="true"> | 113 | <script type="text/montage-serialization" data-ninja-template="true"> |
114 | { | 114 | { |
115 | "owner": { | 115 | "owner": { |
116 | "prototype": "main" | 116 | "prototype": "main", |
117 | "properties": { | ||
118 | "identifier": "testOwner" | ||
119 | } | ||
117 | } | 120 | } |
118 | } | 121 | } |
119 | </script> | 122 | </script> |