Small reflow

This commit is contained in:
Zixaphir 2013-09-20 04:42:03 -07:00
parent 0b2fcfc03f
commit 2915c83e09
4 changed files with 6 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/* /*
* appchan x - Version 2.3.10 - 2013-09-04 * appchan x - Version 2.3.10 - 2013-09-20
* *
* Licensed under the MIT license. * Licensed under the MIT license.
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE * https://github.com/zixaphir/appchan-x/blob/master/LICENSE

View File

@ -20,7 +20,7 @@
// ==/UserScript== // ==/UserScript==
/* /*
* appchan x - Version 2.3.10 - 2013-09-04 * appchan x - Version 2.3.10 - 2013-09-20
* *
* Licensed under the MIT license. * Licensed under the MIT license.
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE * https://github.com/zixaphir/appchan-x/blob/master/LICENSE
@ -12656,11 +12656,11 @@
var arg, color, colors, hex, i, rgb, val, _i, _len; var arg, color, colors, hex, i, rgb, val, _i, _len;
colors = []; colors = [];
rgb = ['r', 'g', 'b'];
for (_i = 0, _len = arguments.length; _i < _len; _i++) { for (_i = 0, _len = arguments.length; _i < _len; _i++) {
arg = arguments[_i]; arg = arguments[_i];
hex = Style.colorToHex(arg) || "ffffff"; hex = Style.colorToHex(arg) || "ffffff";
color = {}; color = {};
rgb = ['r', 'g', 'b'];
i = 0; i = 0;
while (val = rgb[i]) { while (val = rgb[i]) {
color[val] = parseInt(hex.substr(2 * i++, 2), 16) / 255; color[val] = parseInt(hex.substr(2 * i++, 2), 16) / 255;

View File

@ -1,6 +1,6 @@
// Generated by CoffeeScript // Generated by CoffeeScript
/* /*
* appchan x - Version 2.3.10 - 2013-09-04 * appchan x - Version 2.3.10 - 2013-09-20
* *
* Licensed under the MIT license. * Licensed under the MIT license.
* https://github.com/zixaphir/appchan-x/blob/master/LICENSE * https://github.com/zixaphir/appchan-x/blob/master/LICENSE
@ -12652,11 +12652,11 @@
var arg, color, colors, hex, i, rgb, val, _i, _len; var arg, color, colors, hex, i, rgb, val, _i, _len;
colors = []; colors = [];
rgb = ['r', 'g', 'b'];
for (_i = 0, _len = arguments.length; _i < _len; _i++) { for (_i = 0, _len = arguments.length; _i < _len; _i++) {
arg = arguments[_i]; arg = arguments[_i];
hex = Style.colorToHex(arg) || "ffffff"; hex = Style.colorToHex(arg) || "ffffff";
color = {}; color = {};
rgb = ['r', 'g', 'b'];
i = 0; i = 0;
while (val = rgb[i]) { while (val = rgb[i]) {
color[val] = parseInt(hex.substr(2 * i++, 2), 16) / 255; color[val] = parseInt(hex.substr(2 * i++, 2), 16) / 255;

View File

@ -95,10 +95,10 @@ Style =
matrix: -> matrix: ->
colors = [] colors = []
rgb = ['r', 'g', 'b']
for arg in arguments for arg in arguments
hex = Style.colorToHex(arg) or "ffffff" hex = Style.colorToHex(arg) or "ffffff"
color = {} color = {}
rgb = ['r', 'g', 'b']
i = 0 i = 0
while val = rgb[i] while val = rgb[i]
color[val] = parseInt(hex.substr((2 * i++), 2), 16) / 255 color[val] = parseInt(hex.substr((2 * i++), 2), 16) / 255