OLD | NEW |
1 <polymer-element name="polymer-body" extends="body"> | 1 <polymer-element name="polymer-body" extends="body"> |
2 | 2 |
3 <script> | 3 <script> |
4 | 4 |
5 // upgrade polymer-body last so that it can contain other imported elements | 5 // upgrade polymer-body last so that it can contain other imported elements |
6 document.addEventListener('polymer-ready', function() { | 6 document.addEventListener('polymer-ready', function() { |
7 | 7 |
8 Polymer('polymer-body', Platform.mixin({ | 8 Polymer('polymer-body', Platform.mixin({ |
9 | 9 |
10 created: function() { | 10 created: function() { |
(...skipping 13 matching lines...) Expand all Loading... |
24 this.lightFromTemplate(this.template); | 24 this.lightFromTemplate(this.template); |
25 } | 25 } |
26 | 26 |
27 }, window.model)); | 27 }, window.model)); |
28 | 28 |
29 }); | 29 }); |
30 | 30 |
31 </script> | 31 </script> |
32 | 32 |
33 </polymer-element> | 33 </polymer-element> |
OLD | NEW |