Small reflow
This commit is contained in:
parent
0b2fcfc03f
commit
2915c83e09
2
LICENSE
2
LICENSE
@ -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
|
||||||
|
|||||||
@ -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;
|
||||||
|
|||||||
@ -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;
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user