Update utils.js

remove extra letter that would be crashing things
This commit is contained in:
James B. Pollack 2016-03-25 19:29:18 -07:00
parent 8ce23e2345
commit e261519b11

View file

@ -276,7 +276,7 @@ hexToRgb = function(hex) {
return result ? {
red: parseInt(result[1], 16),
green: parseInt(result[2], 16),
blue: parseInt(resulta[3], 16)
blue: parseInt(result[3], 16)
} : null;
}