| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2016 The LUCI Authors. All rights reserved. | 2 Copyright 2016 The LUCI Authors. All rights reserved. |
| 3 Use of this source code is governed under the Apache License, Version 2.0 | 3 Use of this source code is governed under the Apache License, Version 2.0 |
| 4 that can be found in the LICENSE file. | 4 that can be found in the LICENSE file. |
| 5 | 5 |
| 6 --> | 6 --> |
| 7 <!DOCTYPE html> | 7 <!DOCTYPE html> |
| 8 <html> | 8 <html> |
| 9 <head> | 9 <head> |
| 10 <title>task-list Demo</title> | 10 <title>task-list Demo</title> |
| 11 <meta charset="utf-8"> | 11 <meta charset="utf-8"> |
| 12 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | 12 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
| 13 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-
scale=1, user-scalable=yes"> | 13 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-
scale=1, user-scalable=yes"> |
| 14 <script src="../bower_components/webcomponentsjs/webcomponents-lite.js"></scri
pt> | 14 <script src="../bower_components/webcomponentsjs/webcomponents-lite.js"></scri
pt> |
| 15 <script src="../../../node_modules/skia-common-js/common.js"></script> | 15 <script src="../../../node_modules/skia-common-js/common.js"></script> |
| 16 <script src="/res/js/common.js"></script> | 16 <script src="/res/js/common.js"></script> |
| 17 <script src="/res/js/alias.js"></script> |
| 17 <script src="../../../node_modules/sinon/pkg/sinon-1.17.5.js"></script> | 18 <script src="../../../node_modules/sinon/pkg/sinon-1.17.5.js"></script> |
| 18 <!-- Makes a var called list--> | 19 <!-- Makes a var called list--> |
| 19 <script type="text/javascript" src="task-list-demo.json"></script> | 20 <script type="text/javascript" src="task-list-demo.json"></script> |
| 20 | 21 |
| 21 <script type="text/javascript" charset="utf-8"> | 22 <script type="text/javascript" charset="utf-8"> |
| 22 sinon.format = function(object) {return JSON.stringify(object);} | 23 sinon.format = function(object) {return JSON.stringify(object);} |
| 23 sinon.log = function(message) {console.log(message);}; | 24 sinon.log = function(message) {console.log(message);}; |
| 24 var server = sinon.fakeServer.create(); | 25 var server = sinon.fakeServer.create(); |
| 25 server.autoRespond = true; | 26 server.autoRespond = true; |
| 26 //server.autoRespondAfter = 2000; | 27 //server.autoRespondAfter = 2000; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 44 <link rel="import" href="task-list.html"> | 45 <link rel="import" href="task-list.html"> |
| 45 </head> | 46 </head> |
| 46 <body> | 47 <body> |
| 47 | 48 |
| 48 <task-list | 49 <task-list |
| 49 client_id="20770472288-t5smpbpjptka4nd888fv0ctd23ftba2o.apps.googleusercontent
.com"> | 50 client_id="20770472288-t5smpbpjptka4nd888fv0ctd23ftba2o.apps.googleusercontent
.com"> |
| 50 </task-list> | 51 </task-list> |
| 51 | 52 |
| 52 </body> | 53 </body> |
| 53 </html> | 54 </html> |
| OLD | NEW |