This commit is contained in:
thednp 2020-07-27 09:40:03 +00:00
parent ffeb00d326
commit 307f59a7a4
5 changed files with 12 additions and 12 deletions

View file

@ -1,5 +1,5 @@
/*!
* KUTE.js Base v2.0.11 (http://thednp.github.io/kute.js)
* KUTE.js Base v2.0.12 (http://thednp.github.io/kute.js)
* Copyright 2015-2020 © thednp
* Licensed under MIT (https://github.com/thednp/kute.js/blob/master/LICENSE)
*/
@ -9,7 +9,7 @@
(global = global || self, global.KUTE = factory());
}(this, (function () { 'use strict';
var version = "2.0.11";
var version = "2.0.12";
var KUTE = {};

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
/*!
* KUTE.js Extra v2.0.11 (http://thednp.github.io/kute.js)
* KUTE.js Extra v2.0.12 (http://thednp.github.io/kute.js)
* Copyright 2015-2020 © thednp
* Licensed under MIT (https://github.com/thednp/kute.js/blob/master/LICENSE)
*/
@ -9,7 +9,7 @@
(global = global || self, global.KUTE = factory());
}(this, (function () { 'use strict';
var version = "2.0.11";
var version = "2.0.12";
var KUTE = {};
@ -1116,8 +1116,8 @@
function trueColor (colorString) {
if (/rgb|rgba/.test(colorString)) {
var vrgb = colorString.replace(/\s|\)/,'').split('(')[1].split(',');
var colorAlpha = vrgb[3] ? vrgb[3] : null;
var vrgb = colorString.replace(/\s|\)/,'').split('(')[1].split(','),
colorAlpha = vrgb[3] ? vrgb[3] : null;
if (!colorAlpha) {
return { r: parseInt(vrgb[0]), g: parseInt(vrgb[1]), b: parseInt(vrgb[2]) };
} else {

File diff suppressed because one or more lines are too long

4
src/kute.min.js vendored

File diff suppressed because one or more lines are too long