This commit is contained in:
George Michael Brower 2014-09-07 21:38:29 -04:00
commit a81d61ba1b
14 changed files with 53 additions and 53 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

@ -3,7 +3,7 @@ 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;
} }

View File

@ -1,5 +1,5 @@
/* globals Gui, Polymer, PathObserver */ /* globals Gui, Polymer, PathObserver */
'use strict';
// [ ] onFinishChange() // [ ] onFinishChange()

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

@ -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', {

View File

@ -93,7 +93,7 @@ gulp.task( 'docs', function() {
gulp.task( 'clean', function() { gulp.task( 'clean', function() {
return gulp.src( ['build/*', '**/*.css'] ) return gulp.src( ['build/*', '**/*.css'] )
.pipe( $.clean() ); .pipe( $.rimraf() );
} ); } );

View File

@ -4,7 +4,6 @@
"devDependencies": { "devDependencies": {
"browser-sync": "^1.3.6", "browser-sync": "^1.3.6",
"gulp": "^3.8.7", "gulp": "^3.8.7",
"gulp-clean": "^0.3.1",
"gulp-if": "^1.2.4", "gulp-if": "^1.2.4",
"gulp-insert": "^0.4.0", "gulp-insert": "^0.4.0",
"gulp-jscs": "^1.1.2", "gulp-jscs": "^1.1.2",
@ -14,6 +13,7 @@
"gulp-reload": "0.0.4", "gulp-reload": "0.0.4",
"gulp-rename": "^1.2.0", "gulp-rename": "^1.2.0",
"gulp-replace": "^0.4.0", "gulp-replace": "^0.4.0",
"gulp-rimraf": "^0.1.0",
"gulp-stylus": "^1.3.0", "gulp-stylus": "^1.3.0",
"gulp-vulcanize": "^1.0.0", "gulp-vulcanize": "^1.0.0",
"gulp-watch": "^0.6.9", "gulp-watch": "^0.6.9",