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 = {};
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;
};
};

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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