| OLD | NEW |
| 1 <polymer-element name="core-resizer-parent"> | 1 <polymer-element name="core-resizer-parent"> |
| 2 <script> | 2 <script> |
| 3 Polymer(Polymer.mixin({ | 3 Polymer(Polymer.mixin({ |
| 4 eventDelegates: { | 4 eventDelegates: { |
| 5 'core-resize': 'resizeHandler' | 5 'core-resize': 'resizeHandler' |
| 6 }, | 6 }, |
| 7 attached: function() { | 7 attached: function() { |
| 8 this.resizerAttachedHandler(); | 8 this.resizerAttachedHandler(); |
| 9 }, | 9 }, |
| 10 detached: function() { | 10 detached: function() { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 </script> | 57 </script> |
| 58 </polymer-element> | 58 </polymer-element> |
| 59 | 59 |
| 60 <polymer-element name="core-resizable-in-shadow" noscript> | 60 <polymer-element name="core-resizable-in-shadow" noscript> |
| 61 <template> | 61 <template> |
| 62 <div> | 62 <div> |
| 63 <core-resizable id="resizable"></core-resizable> | 63 <core-resizable id="resizable"></core-resizable> |
| 64 </div> | 64 </div> |
| 65 </template> | 65 </template> |
| 66 </polymer-element> | 66 </polymer-element> |
| OLD | NEW |