mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
0.7.8
This commit is contained in:
parent
103be80b63
commit
6a444cca62
@ -1,6 +1,6 @@
|
|||||||
/**
|
/**
|
||||||
* dat-gui JavaScript Controller Library
|
* dat-gui JavaScript Controller Library
|
||||||
* http://code.google.com/p/dat-gui
|
* https://github.com/dataarts/dat.gui
|
||||||
*
|
*
|
||||||
* Copyright 2011 Data Arts Team, Google Creative Lab
|
* Copyright 2011 Data Arts Team, Google Creative Lab
|
||||||
*
|
*
|
||||||
@ -222,7 +222,7 @@ var INTERPRETATIONS = [
|
|||||||
},
|
},
|
||||||
CSS_RGB: {
|
CSS_RGB: {
|
||||||
read: function read(original) {
|
read: function read(original) {
|
||||||
var test = original.match(/^rgb\(\s*(.+)\s*,\s*(.+)\s*,\s*(.+)\s*\)/);
|
var test = original.match(/^rgb\(\s*(\S+)\s*,\s*(\S+)\s*,\s*(\S+)\s*\)/);
|
||||||
if (test === null) {
|
if (test === null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -237,7 +237,7 @@ var INTERPRETATIONS = [
|
|||||||
},
|
},
|
||||||
CSS_RGBA: {
|
CSS_RGBA: {
|
||||||
read: function read(original) {
|
read: function read(original) {
|
||||||
var test = original.match(/^rgba\(\s*(.+)\s*,\s*(.+)\s*,\s*(.+)\s*,\s*(.+)\s*\)/);
|
var test = original.match(/^rgba\(\s*(\S+)\s*,\s*(\S+)\s*,\s*(\S+)\s*,\s*(\S+)\s*\)/);
|
||||||
if (test === null) {
|
if (test === null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
File diff suppressed because one or more lines are too long
4
build/dat.gui.min.js
vendored
4
build/dat.gui.min.js
vendored
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
|||||||
/**
|
/**
|
||||||
* dat-gui JavaScript Controller Library
|
* dat-gui JavaScript Controller Library
|
||||||
* http://code.google.com/p/dat-gui
|
* https://github.com/dataarts/dat.gui
|
||||||
*
|
*
|
||||||
* Copyright 2011 Data Arts Team, Google Creative Lab
|
* Copyright 2011 Data Arts Team, Google Creative Lab
|
||||||
*
|
*
|
||||||
@ -216,7 +216,7 @@ var INTERPRETATIONS = [
|
|||||||
},
|
},
|
||||||
CSS_RGB: {
|
CSS_RGB: {
|
||||||
read: function read(original) {
|
read: function read(original) {
|
||||||
var test = original.match(/^rgb\(\s*(.+)\s*,\s*(.+)\s*,\s*(.+)\s*\)/);
|
var test = original.match(/^rgb\(\s*(\S+)\s*,\s*(\S+)\s*,\s*(\S+)\s*\)/);
|
||||||
if (test === null) {
|
if (test === null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -231,7 +231,7 @@ var INTERPRETATIONS = [
|
|||||||
},
|
},
|
||||||
CSS_RGBA: {
|
CSS_RGBA: {
|
||||||
read: function read(original) {
|
read: function read(original) {
|
||||||
var test = original.match(/^rgba\(\s*(.+)\s*,\s*(.+)\s*,\s*(.+)\s*,\s*(.+)\s*\)/);
|
var test = original.match(/^rgba\(\s*(\S+)\s*,\s*(\S+)\s*,\s*(\S+)\s*,\s*(\S+)\s*\)/);
|
||||||
if (test === null) {
|
if (test === null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
File diff suppressed because one or more lines are too long
7029
package-lock.json
generated
7029
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dat.gui",
|
"name": "dat.gui",
|
||||||
"version": "0.7.7",
|
"version": "0.7.8",
|
||||||
"description": "A lightweight graphical user interface for changing variables in JavaScript.",
|
"description": "A lightweight graphical user interface for changing variables in JavaScript.",
|
||||||
"main": "build/dat.gui.js",
|
"main": "build/dat.gui.js",
|
||||||
"module": "build/dat.gui.module.js",
|
"module": "build/dat.gui.module.js",
|
||||||
|
Loading…
Reference in New Issue
Block a user