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="diff_viewer.js"></script> | 9 <script src="diff_viewer.js"></script> |
10 <script src="loader.js"></script> | 10 <script src="loader.js"></script> |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 </div> | 180 </div> |
181 | 181 |
182 <p> | 182 <p> |
183 | 183 |
184 <table border="0"><tr><td> <!-- table holding results header + results table
--> | 184 <table border="0"><tr><td> <!-- table holding results header + results table
--> |
185 <table border="0" width="100%"> <!-- results header --> | 185 <table border="0" width="100%"> <!-- results header --> |
186 <tr> | 186 <tr> |
187 <td> | 187 <td> |
188 Found {{filteredImagePairs.length}} matches; | 188 Found {{filteredImagePairs.length}} matches; |
189 <span ng-show="filteredImagePairs.length > limitedImagePairs.length"
> | 189 <span ng-show="filteredImagePairs.length > limitedImagePairs.length"
> |
190 displaying the first {{limitedImagePairs.length}} | 190 displaying the first {{limitedImagePairs.length}}. |
191 </span> | 191 </span> |
192 <span ng-show="filteredImagePairs.length <= limitedImagePairs.length
"> | 192 <span ng-show="filteredImagePairs.length <= limitedImagePairs.length
"> |
193 displaying them all | 193 displaying them all. |
| 194 </span> |
| 195 <span ng-show="renderEndTime > renderStartTime"> |
| 196 Rendered in {{(renderEndTime - renderStartTime).toFixed(0)}} ms. |
194 </span> | 197 </span> |
195 <br> | 198 <br> |
196 (click on the column header radio buttons to re-sort by that column) | 199 (click on the column header radio buttons to re-sort by that column) |
197 </td> | 200 </td> |
198 <td align="right"> | 201 <td align="right"> |
199 <div> | 202 <div> |
200 all tests shown: | 203 all tests shown: |
201 <button ng-click="selectAllImagePairs()"> | 204 <button ng-click="selectAllImagePairs()"> |
202 select | 205 select |
203 </button> | 206 </button> |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
265 ng-init="pixelDiffBgColorBrightness=64; pixelDiffBgColor=brig
htnessStringToHexColor(pixelDiffBgColorBrightness)" | 268 ng-init="pixelDiffBgColorBrightness=64; pixelDiffBgColor=brig
htnessStringToHexColor(pixelDiffBgColorBrightness)" |
266 ng-change="pixelDiffBgColor=brightnessStringToHexColor(pixelD
iffBgColorBrightness)" | 269 ng-change="pixelDiffBgColor=brightnessStringToHexColor(pixelD
iffBgColorBrightness)" |
267 title="image background brightness" | 270 title="image background brightness" |
268 min="0" max="255"/> | 271 min="0" max="255"/> |
269 </th> | 272 </th> |
270 <th> | 273 <th> |
271 <!-- imagepair-selection checkbox column --> | 274 <!-- imagepair-selection checkbox column --> |
272 </th> | 275 </th> |
273 </tr> | 276 </tr> |
274 | 277 |
275 <tr ng-repeat="imagePair in limitedImagePairs" ng-controller="ImageContr
oller"> | 278 <tr ng-repeat="imagePair in limitedImagePairs" ng-controller="ImageContr
oller" results-updated-callback-directive> |
276 <td> | 279 <td> |
277 {{imagePair[constants.KEY__EXTRA_COLUMN_VALUES][constants.KEY__EXTRA
COLUMN__RESULT_TYPE]}} | 280 {{imagePair[constants.KEY__EXTRA_COLUMN_VALUES][constants.KEY__EXTRA
COLUMN__RESULT_TYPE]}} |
278 <br> | 281 <br> |
279 <button class="show-only-button" | 282 <button class="show-only-button" |
280 ng-show="viewingTab == defaultTab" | 283 ng-show="viewingTab == defaultTab" |
281 ng-click="showOnlyResultType(imagePair[constants.KEY__EXTRA_
COLUMN_VALUES][constants.KEY__EXTRACOLUMN__RESULT_TYPE])" | 284 ng-click="showOnlyResultType(imagePair[constants.KEY__EXTRA_
COLUMN_VALUES][constants.KEY__EXTRACOLUMN__RESULT_TYPE])" |
282 title="show only results of type {{imagePair[constants.KEY__
EXTRA_COLUMN_VALUES][constants.KEY__EXTRACOLUMN__RESULT_TYPE]}}"> | 285 title="show only results of type {{imagePair[constants.KEY__
EXTRA_COLUMN_VALUES][constants.KEY__EXTRACOLUMN__RESULT_TYPE]}}"> |
283 show only | 286 show only |
284 </button> | 287 </button> |
285 <br> | 288 <br> |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 ng-click="toggleValueInArray(imagePair.index, selectedImagePa
irs)"> | 418 ng-click="toggleValueInArray(imagePair.index, selectedImagePa
irs)"> |
416 </tr> | 419 </tr> |
417 </table> <!-- imagePairs --> | 420 </table> <!-- imagePairs --> |
418 </td></tr></table> <!-- table holding results header + imagePairs table --> | 421 </td></tr></table> <!-- table holding results header + imagePairs table --> |
419 | 422 |
420 </div><!-- main display area of selected tab --> | 423 </div><!-- main display area of selected tab --> |
421 </div><!-- everything: hide until data is loaded --> | 424 </div><!-- everything: hide until data is loaded --> |
422 | 425 |
423 </body> | 426 </body> |
424 </html> | 427 </html> |
OLD | NEW |