mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
0.7.6
This commit is contained in:
parent
39facfd621
commit
c2edd82e39
@ -2013,6 +2013,12 @@ Common.extend(GUI.prototype,
|
||||
close: function close() {
|
||||
this.closed = true;
|
||||
},
|
||||
hide: function hide() {
|
||||
this.domElement.style.display = 'none';
|
||||
},
|
||||
show: function show() {
|
||||
this.domElement.style.display = '';
|
||||
},
|
||||
onResize: function onResize() {
|
||||
var root = this.getRoot();
|
||||
if (root.scrollable) {
|
||||
|
File diff suppressed because one or more lines are too long
2
build/dat.gui.min.js
vendored
2
build/dat.gui.min.js
vendored
File diff suppressed because one or more lines are too long
@ -2007,6 +2007,12 @@ Common.extend(GUI.prototype,
|
||||
close: function close() {
|
||||
this.closed = true;
|
||||
},
|
||||
hide: function hide() {
|
||||
this.domElement.style.display = 'none';
|
||||
},
|
||||
show: function show() {
|
||||
this.domElement.style.display = '';
|
||||
},
|
||||
onResize: function onResize() {
|
||||
var root = this.getRoot();
|
||||
if (root.scrollable) {
|
||||
|
File diff suppressed because one or more lines are too long
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "dat.gui",
|
||||
"version": "0.7.5",
|
||||
"version": "0.7.6",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "dat.gui",
|
||||
"version": "0.7.5",
|
||||
"version": "0.7.6",
|
||||
"description": "A lightweight graphical user interface for changing variables in JavaScript.",
|
||||
"main": "build/dat.gui.js",
|
||||
"module": "build/dat.gui.module.js",
|
||||
|
Loading…
Reference in New Issue
Block a user