| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html ng-app="Loader" ng-controller="Loader.Controller"> | 3 <html ng-app="Loader" ng-controller="Loader.Controller"> |
| 4 | 4 |
| 5 <head> | 5 <head> |
| 6 <title ng-bind="windowTitle"></title> | 6 <title ng-bind="windowTitle"></title> |
| 7 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js"
></script> | 7 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js"
></script> |
| 8 <script src="loader.js"></script> | 8 <script src="loader.js"></script> |
| 9 <link rel="stylesheet" href="view.css"> | 9 <link rel="stylesheet" href="view.css"> |
| 10 </head> | 10 </head> |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 ng-click="toggleValueInArray(result.index, selectedItems)"> | 348 ng-click="toggleValueInArray(result.index, selectedItems)"> |
| 349 </tr> | 349 </tr> |
| 350 </table> <!-- results --> | 350 </table> <!-- results --> |
| 351 </td></tr></table> <!-- table holding results header + results table --> | 351 </td></tr></table> <!-- table holding results header + results table --> |
| 352 | 352 |
| 353 </div><!-- main display area of selected tab --> | 353 </div><!-- main display area of selected tab --> |
| 354 </div><!-- everything: hide until data is loaded --> | 354 </div><!-- everything: hide until data is loaded --> |
| 355 | 355 |
| 356 <!-- TODO(epoger): Can we get the base URLs (commondatastorage and | 356 <!-- TODO(epoger): Can we get the base URLs (commondatastorage and |
| 357 issues list) from | 357 issues list) from |
| 358 http://skia.googlecode.com/svn/buildbot/site_config/global_variables.json | 358 https://skia.googlesource.com/buildbot/+/master/site_config/global_variab
les.json ? |
| 359 ? I tried importing the | 359 I tried importing the |
| 360 http://skia.googlecode.com/svn/buildbot/skia_tools.js script and using | 360 http://skia.googlecode.com/svn/buildbot/skia_tools.js script and using |
| 361 that to do so, but I got Access-Control-Allow-Origin errors. | 361 that to do so, but I got Access-Control-Allow-Origin errors. |
| 362 --> | 362 --> |
| 363 | 363 |
| 364 </body> | 364 </body> |
| 365 </html> | 365 </html> |
| OLD | NEW |