Skip to content

Commit

Permalink
LET WITH VAR
Browse files Browse the repository at this point in the history
  • Loading branch information
cravxx committed Aug 14, 2015
1 parent 5cf3418 commit 8e6cc84
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chameleon.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// @description Auto color formatting for the chatbox.
// @namespace how much grease
// @include http://aimgames.forummotion.com/*
// @version 1.5
// @version 1.5.1
// @grant none
// ==/UserScript==
/*RainbowVis-JS Released under Eclipse Public License - v 1.0*/
Expand All @@ -21,8 +21,8 @@ function values(o) {
//////COLOR
var rainbow = new Rainbow();
var s = '';
for (let i = 0; i < 100; i += 5) {
let hexColour = rainbow.colourAt(i);
for (var i = 0; i < 100; i += 5) {
var hexColour = rainbow.colourAt(i);
s += '#' + hexColour + ',';
}
s = s.split(',');
Expand Down

0 comments on commit 8e6cc84

Please sign in to comment.