Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrins committed May 29, 2014
2 parents 49d14ec + 3bb010d commit 117d17f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spectrum.js
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@
function getUniqueSelectionPalette() {
var unique = [];
if (opts.showPalette) {
for (i = 0; i < selectionPalette.length; i++) {
for (var i = 0; i < selectionPalette.length; i++) {
var rgb = tinycolor(selectionPalette[i]).toRgbString();

if (!paletteLookup[rgb]) {
Expand Down

0 comments on commit 117d17f

Please sign in to comment.