mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
kill strict
This commit is contained in:
parent
ca14623507
commit
8d86460ebd
4
TODO.md
4
TODO.md
@ -5,10 +5,10 @@ BUILD
|
|||||||
|
|
||||||
REFACTOR
|
REFACTOR
|
||||||
|
|
||||||
- [ ] kill strict
|
|
||||||
- [ ] controller-* => dat-gui-*
|
|
||||||
- [ ] gui.define* => gui.var*
|
- [ ] gui.define* => gui.var*
|
||||||
- [ ] Gui.js => gui-panel => dat-gui
|
- [ ] Gui.js => gui-panel => dat-gui
|
||||||
|
- [x] controller-* => dat-gui-*
|
||||||
|
- [x] kill strict
|
||||||
|
|
||||||
PARITY
|
PARITY
|
||||||
|
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
|||||||
!function(n){"use strict";var t=function(){this.defined={}};t.ready=function(n){n()},t.prototype.define=function(n,t){return this.defined[n]=t,e},t.prototype.add=function(){return e};var i=function(){return this},e={on:i};n.Gui=t}(this);
|
!function(n){var t=function(){this.defined={}};t.ready=function(n){n()},t.prototype.define=function(n,t){return this.defined[n]=t,e},t.prototype.add=function(){return e};var i=function(){return this},e={on:i};n.Gui=t}(this);
|
@ -1,5 +1,3 @@
|
|||||||
'use strict';
|
|
||||||
|
|
||||||
Gui.ready( init );
|
Gui.ready( init );
|
||||||
|
|
||||||
function init() {
|
function init() {
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
( function( scope ) {
|
( function( scope ) {
|
||||||
|
|
||||||
/* globals Path */
|
/* globals Path */
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var Gui = function( params ) {
|
var Gui = function( params ) {
|
||||||
|
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
/* globals Polymer */
|
/* globals Polymer */
|
||||||
'use strict';
|
|
||||||
|
|
||||||
Polymer( 'gui-row', {
|
Polymer( 'gui-row', {
|
||||||
|
|
||||||
|
@ -1,8 +1,6 @@
|
|||||||
// Use gui.shim.js in production when you want to use dat.gui to recall values without any of the interface.
|
// Use gui.shim.js in production when you want to use dat.gui to recall values without any of the interface.
|
||||||
( function( scope ) {
|
( function( scope ) {
|
||||||
|
|
||||||
'use strict';
|
|
||||||
|
|
||||||
var Gui = function() {
|
var Gui = function() {
|
||||||
|
|
||||||
this.defined = {};
|
this.defined = {};
|
||||||
|
Loading…
Reference in New Issue
Block a user