diff --git a/build/gui.html b/build/gui.html index d22604f..72204bb 100644 --- a/build/gui.html +++ b/build/gui.html @@ -1,21 +1,21 @@ - + - + - + - - - - + + + + \ No newline at end of file diff --git a/build/gui.js b/build/gui.js index 122e9b0..b1f160d 100644 --- a/build/gui.js +++ b/build/gui.js @@ -1,21 +1,21 @@ -document.write(['', +document.write(['', '', '', -'', +'', '', '', -'', +'', '', '', '', -'', -'', -'', -'', +'', +'', +'', +'', '',].join("\n")) \ No newline at end of file diff --git a/docs/examples.js b/docs/examples.js index 4b8d96f..2a0334a 100644 --- a/docs/examples.js +++ b/docs/examples.js @@ -1,20 +1,20 @@ var examples = {}; examples[ 'default' ] = function() { - + var gui = new Gui(); - gui.anon( 'hi', 'todo' ); + //gui.anon( 'hi', 'todo' ); return gui; } // "basic-usage", "limiting-input", "color-controllers", "events", "folders-comments", "saving-values", "presets", "save-to-disk", "custom-placement", "defining-custom-controllers", "publishing-custom-controllers" examples[ 'basic-usage' ] = function() { - + var gui = new Gui(); var object = { - numberProperty: 0, + numberProperty: 0, stringProperty: 'hey', booleanProperty: false, functionProperty: function() { @@ -29,4 +29,4 @@ examples[ 'basic-usage' ] = function() { return gui; -}; \ No newline at end of file +}; diff --git a/elements/Gui.js b/elements/Gui.js index a8bda49..2f44f52 100644 --- a/elements/Gui.js +++ b/elements/Gui.js @@ -1,5 +1,5 @@ (function(scope) { - 'use strict'; + var Gui = function(params) { diff --git a/elements/controller-base/controller-base.js b/elements/controller-base/controller-base.js index 8846ec8..7559eac 100644 --- a/elements/controller-base/controller-base.js +++ b/elements/controller-base/controller-base.js @@ -1,5 +1,5 @@ /* globals Gui, Polymer, PathObserver */ -'use strict'; + /* diff --git a/elements/controller-boolean/controller-boolean.js b/elements/controller-boolean/controller-boolean.js index ae1c1f9..789f47b 100644 --- a/elements/controller-boolean/controller-boolean.js +++ b/elements/controller-boolean/controller-boolean.js @@ -1,5 +1,5 @@ /* globals Gui, Polymer */ -'use strict'; + Gui.register('controller-boolean', function(value) { diff --git a/elements/controller-function/controller-function.js b/elements/controller-function/controller-function.js index c7fa1f6..b621559 100644 --- a/elements/controller-function/controller-function.js +++ b/elements/controller-function/controller-function.js @@ -1,5 +1,5 @@ /* globals Gui, Polymer */ -'use strict'; + Gui.register('controller-function', function(value) { diff --git a/elements/controller-number/controller-number.js b/elements/controller-number/controller-number.js index 76bbfad..3f9ea32 100644 --- a/elements/controller-number/controller-number.js +++ b/elements/controller-number/controller-number.js @@ -1,5 +1,5 @@ /* globals Gui, Polymer */ -'use strict'; + /* diff --git a/elements/controller-option/controller-option.js b/elements/controller-option/controller-option.js index 978cd9b..e240255 100644 --- a/elements/controller-option/controller-option.js +++ b/elements/controller-option/controller-option.js @@ -54,4 +54,4 @@ Polymer( 'controller-option', { }); - \ No newline at end of file + diff --git a/elements/controller-string/controller-string.js b/elements/controller-string/controller-string.js index b85fdd0..a833c82 100644 --- a/elements/controller-string/controller-string.js +++ b/elements/controller-string/controller-string.js @@ -1,5 +1,5 @@ /* globals Gui, Polymer */ -'use strict'; + Gui.register('controller-string', function(value) { diff --git a/elements/gui-panel/gui-panel.js b/elements/gui-panel/gui-panel.js index fad01d7..4f30fc7 100644 --- a/elements/gui-panel/gui-panel.js +++ b/elements/gui-panel/gui-panel.js @@ -1,5 +1,5 @@ /* globals Polymer, Path, Gui */ -'use strict'; + // [ ] scrolling when docked // [ ] scrolling when window short and not docked diff --git a/elements/gui-row/gui-row.js b/elements/gui-row/gui-row.js index 5a1a8e3..e2641dc 100644 --- a/elements/gui-row/gui-row.js +++ b/elements/gui-row/gui-row.js @@ -1,5 +1,5 @@ /* globals Polymer */ -'use strict'; + Polymer('gui-row', {