| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 <div style="font-size:20px" | 153 <div style="font-size:20px" |
| 154 ng-hide="!submitPending"> | 154 ng-hide="!submitPending"> |
| 155 Submitting, please wait... | 155 Submitting, please wait... |
| 156 </div> | 156 </div> |
| 157 </div> | 157 </div> |
| 158 <div> | 158 <div> |
| 159 Advanced settings... | 159 Advanced settings... |
| 160 <input type="checkbox" ng-model="showSubmitAdvancedSettings"> | 160 <input type="checkbox" ng-model="showSubmitAdvancedSettings"> |
| 161 show | 161 show |
| 162 <ul ng-hide="!showSubmitAdvancedSettings"> | 162 <ul ng-hide="!showSubmitAdvancedSettings"> |
| 163 <li ng-repeat="setting in ['reviewed-by-human', 'ignore-failures']"> | 163 <li ng-repeat="setting in ['reviewed-by-human', 'ignore-failure']"> |
| 164 {{setting}} | 164 {{setting}} |
| 165 <input type="checkbox" ng-model="submitAdvancedSettings[setting]"> | 165 <input type="checkbox" ng-model="submitAdvancedSettings[setting]"> |
| 166 </li> | 166 </li> |
| 167 <li ng-repeat="setting in ['bug']"> | 167 <li ng-repeat="setting in ['bug']"> |
| 168 {{setting}} | 168 {{setting}} |
| 169 <input type="text" ng-model="submitAdvancedSettings[setting]"> | 169 <input type="text" ng-model="submitAdvancedSettings[setting]"> |
| 170 </li> | 170 </li> |
| 171 </ul> | 171 </ul> |
| 172 </div> | 172 </div> |
| 173 </div> | 173 </div> |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 <!-- TODO(epoger): Can we get the base URLs (commondatastorage and | 303 <!-- TODO(epoger): Can we get the base URLs (commondatastorage and |
| 304 issues list) from | 304 issues list) from |
| 305 http://skia.googlecode.com/svn/buildbot/site_config/global_variables.json | 305 http://skia.googlecode.com/svn/buildbot/site_config/global_variables.json |
| 306 ? I tried importing the | 306 ? I tried importing the |
| 307 http://skia.googlecode.com/svn/buildbot/skia_tools.js script and using | 307 http://skia.googlecode.com/svn/buildbot/skia_tools.js script and using |
| 308 that to do so, but I got Access-Control-Allow-Origin errors. | 308 that to do so, but I got Access-Control-Allow-Origin errors. |
| 309 --> | 309 --> |
| 310 | 310 |
| 311 </body> | 311 </body> |
| 312 </html> | 312 </html> |
| OLD | NEW |