OLD | NEW |
---|---|
(Empty) | |
1 function DiffViewController($scope) { | |
2 $scope.differs = [ | |
3 { | |
4 "title": "Different Pixels" | |
5 }, | |
6 { | |
7 "title": "Perceptual Difference" | |
8 } | |
9 ]; | |
10 $scope.sortIndex = 1; | |
11 $scope.records = SkPDiffRecords.records; | |
borenet
2013/07/08 20:44:38
Where does SkPDiffRecords come from? There isn't
Zach Reizner
2013/07/08 21:02:19
I'm using JSONP to avoid using AJAX because I don'
borenet
2013/07/09 15:25:51
Got it, thanks.
| |
12 $scope.highlight = function(differName) { | |
13 console.debug(differName); | |
14 } | |
15 $scope.setSortIndex = function(a) { | |
16 $scope.sortIndex = a; | |
17 } | |
18 $scope.sortingDiffer = function(a) { | |
19 console.debug($scope.sortIndex); | |
20 return a.diffs[$scope.sortIndex].result; | |
21 } | |
22 } | |
OLD | NEW |