| 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="constants.js"></script> | 8 <script src="constants.js"></script> |
| 9 <script src="loader.js"></script> | 9 <script src="loader.js"></script> |
| 10 <link rel="stylesheet" href="view.css"> | 10 <link rel="stylesheet" href="view.css"> |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 name="sortColumnRadio" | 253 name="sortColumnRadio" |
| 254 value="percentDifferingPixels" | 254 value="percentDifferingPixels" |
| 255 ng-checked="(sortColumnKey == constants.KEY__DIFFERENCE_DATA_
_PERCENT_DIFF_PIXELS)" | 255 ng-checked="(sortColumnKey == constants.KEY__DIFFERENCE_DATA_
_PERCENT_DIFF_PIXELS)" |
| 256 ng-click="sortResultsBy(constants.KEY__DIFFERENCE_DATA, const
ants.KEY__DIFFERENCE_DATA__PERCENT_DIFF_PIXELS)"> | 256 ng-click="sortResultsBy(constants.KEY__DIFFERENCE_DATA, const
ants.KEY__DIFFERENCE_DATA__PERCENT_DIFF_PIXELS)"> |
| 257 differing pixels in white | 257 differing pixels in white |
| 258 </th> | 258 </th> |
| 259 <th width="{{imageSize}}"> | 259 <th width="{{imageSize}}"> |
| 260 <input type="radio" | 260 <input type="radio" |
| 261 name="sortColumnRadio" | 261 name="sortColumnRadio" |
| 262 value="weightedDiffMeasure" | 262 value="weightedDiffMeasure" |
| 263 ng-checked="(sortColumnKey == constants.KEY__DIFFERENCE_DATA_
_WEIGHTED_DIFF)" | 263 ng-checked="(sortColumnKey == constants.KEY__DIFFERENCE_DATA_
_PERCEPTUAL_DIFF)" |
| 264 ng-click="sortResultsBy(constants.KEY__DIFFERENCE_DATA, const
ants.KEY__DIFFERENCE_DATA__WEIGHTED_DIFF)"> | 264 ng-click="sortResultsBy(constants.KEY__DIFFERENCE_DATA, const
ants.KEY__DIFFERENCE_DATA__PERCEPTUAL_DIFF)"> |
| 265 perceptual difference | 265 perceptual difference |
| 266 <br> | 266 <br> |
| 267 <input type="range" ng-model="pixelDiffBgColorBrightness" | 267 <input type="range" ng-model="pixelDiffBgColorBrightness" |
| 268 ng-init="pixelDiffBgColorBrightness=64; pixelDiffBgColor=brig
htnessStringToHexColor(pixelDiffBgColorBrightness)" | 268 ng-init="pixelDiffBgColorBrightness=64; pixelDiffBgColor=brig
htnessStringToHexColor(pixelDiffBgColorBrightness)" |
| 269 ng-change="pixelDiffBgColor=brightnessStringToHexColor(pixelD
iffBgColorBrightness)" | 269 ng-change="pixelDiffBgColor=brightnessStringToHexColor(pixelD
iffBgColorBrightness)" |
| 270 title="image background brightness" | 270 title="image background brightness" |
| 271 min="0" max="255"/> | 271 min="0" max="255"/> |
| 272 </th> | 272 </th> |
| 273 <th> | 273 <th> |
| 274 <!-- imagepair-selection checkbox column --> | 274 <!-- imagepair-selection checkbox column --> |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 414 ng-click="toggleValueInArray(imagePair.index, selectedImagePa
irs)"> | 414 ng-click="toggleValueInArray(imagePair.index, selectedImagePa
irs)"> |
| 415 </tr> | 415 </tr> |
| 416 </table> <!-- imagePairs --> | 416 </table> <!-- imagePairs --> |
| 417 </td></tr></table> <!-- table holding results header + imagePairs table --> | 417 </td></tr></table> <!-- table holding results header + imagePairs table --> |
| 418 | 418 |
| 419 </div><!-- main display area of selected tab --> | 419 </div><!-- main display area of selected tab --> |
| 420 </div><!-- everything: hide until data is loaded --> | 420 </div><!-- everything: hide until data is loaded --> |
| 421 | 421 |
| 422 </body> | 422 </body> |
| 423 </html> | 423 </html> |
| OLD | NEW |