removed use strict

This commit is contained in:
Doug Fritz 2014-09-07 18:27:32 -07:00
parent 74f284b4b9
commit edf85c342c
12 changed files with 40 additions and 40 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,20 +1,20 @@
var examples = {}; var examples = {};
examples[ 'default' ] = function() { examples[ 'default' ] = function() {
var gui = new Gui(); var gui = new Gui();
gui.anon( 'hi', 'todo' ); //gui.anon( 'hi', 'todo' );
return gui; 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" // "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() { examples[ 'basic-usage' ] = function() {
var gui = new Gui(); var gui = new Gui();
var object = { var object = {
numberProperty: 0, numberProperty: 0,
stringProperty: 'hey', stringProperty: 'hey',
booleanProperty: false, booleanProperty: false,
functionProperty: function() { functionProperty: function() {
@ -29,4 +29,4 @@ examples[ 'basic-usage' ] = function() {
return gui; return gui;
}; };

View File

@ -1,5 +1,5 @@
(function(scope) { (function(scope) {
'use strict';
var Gui = function(params) { var Gui = function(params) {

View File

@ -1,5 +1,5 @@
/* globals Gui, Polymer, PathObserver */ /* globals Gui, Polymer, PathObserver */
'use strict';
/* /*

View File

@ -1,5 +1,5 @@
/* globals Gui, Polymer */ /* globals Gui, Polymer */
'use strict';
Gui.register('controller-boolean', function(value) { Gui.register('controller-boolean', function(value) {

View File

@ -1,5 +1,5 @@
/* globals Gui, Polymer */ /* globals Gui, Polymer */
'use strict';
Gui.register('controller-function', function(value) { Gui.register('controller-function', function(value) {

View File

@ -1,5 +1,5 @@
/* globals Gui, Polymer */ /* globals Gui, Polymer */
'use strict';
/* /*

View File

@ -54,4 +54,4 @@ Polymer( 'controller-option', {
}); });

View File

@ -1,5 +1,5 @@
/* globals Gui, Polymer */ /* globals Gui, Polymer */
'use strict';
Gui.register('controller-string', function(value) { Gui.register('controller-string', function(value) {

View File

@ -1,5 +1,5 @@
/* globals Polymer, Path, Gui */ /* globals Polymer, Path, Gui */
'use strict';
// [ ] scrolling when docked // [ ] scrolling when docked
// [ ] scrolling when window short and not docked // [ ] scrolling when window short and not docked

View File

@ -1,5 +1,5 @@
/* globals Polymer */ /* globals Polymer */
'use strict';
Polymer('gui-row', { Polymer('gui-row', {