Skip to content

Commit 5f4a3c2

Browse files
Source Formatting
1 parent d230f95 commit 5f4a3c2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/tracker/color.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88

99
colors = {
1010

11-
blue: function(r, g, b, a, w, i, j) {
11+
blue: function(r, g, b) {
1212
var threshold = 50;
1313

1414
if ((b - r) >= threshold && (b - g) >= threshold) {
1515
return true;
1616
}
1717
},
1818

19-
green: function(r, g, b, a, w, i, j) {
19+
green: function(r, g, b) {
2020
var thresholdRed = 30,
2121
thresholdBlue = 10;
2222

@@ -25,7 +25,7 @@
2525
}
2626
},
2727

28-
pink: function(r, g, b, a, w, i, j) {
28+
pink: function(r, g, b) {
2929
var threshold = 50;
3030

3131
if ((r - g) >= threshold && (b - g) >= threshold) {

0 commit comments

Comments
 (0)