Skip to content

Commit

Permalink
added burntsienna and fixed glosure compiler bug
Browse files Browse the repository at this point in the history
  • Loading branch information
robert committed Jul 12, 2011
1 parent 210cf34 commit c7c73b1
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions jquery.xcolor.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"blueviolet": 9055202,
"brown": 10824234,
"burlywood": 14596231,
"burntsienna": 15367773,
"cadetblue": 6266528,
"chartreuse": 8388352,
"chocolate": 13789470,
Expand Down Expand Up @@ -724,10 +725,10 @@
}

fx["elem"]["style"][attr] = _RGBAtoCSS(
S.r + P * (E.r - S.r)|0,
S.g + P * (E.g - S.g)|0,
S.b + P * (E.b - S.b)|0,
S.a + P * (E.a - S.a)
S["r"] + P * (E["r"] - S["r"])|0,
S["g"] + P * (E["g"] - S["g"])|0,
S["b"] + P * (E["b"] - S["b"])|0,
S["a"] + P * (E["a"] - S["a"])
);
}
});
Expand Down

0 comments on commit c7c73b1

Please sign in to comment.