| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2013 The Polymer Authors. All rights reserved. | 3 Copyright 2013 The Polymer Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style | 4 Use of this source code is governed by a BSD-style |
| 5 license that can be found in the LICENSE file. | 5 license that can be found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <title>app-widgets</title> | 9 <title>app-widgets</title> |
| 10 <script>// Copyright (c) 2012 The Polymer Authors. All rights reserved. | 10 <script>// Copyright (c) 2012 The Polymer Authors. All rights reserved. |
| (...skipping 2650 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2661 document.addEventListener('WebComponentsReady', function() { | 2661 document.addEventListener('WebComponentsReady', function() { |
| 2662 document.getElementById('nav-drawer').toggle(); | 2662 document.getElementById('nav-drawer').toggle(); |
| 2663 }); | 2663 }); |
| 2664 | 2664 |
| 2665 document.getElementById('menu-button').addEventListener('click', function(
) { | 2665 document.getElementById('menu-button').addEventListener('click', function(
) { |
| 2666 document.getElementById('nav-drawer').toggle(); | 2666 document.getElementById('nav-drawer').toggle(); |
| 2667 }); | 2667 }); |
| 2668 </script> | 2668 </script> |
| 2669 </body> | 2669 </body> |
| 2670 </html> | 2670 </html> |
| OLD | NEW |