fewer errors

This commit is contained in:
George Michael Brower 2014-09-07 21:40:18 -04:00
parent a81d61ba1b
commit a746f0e29b
3 changed files with 22 additions and 23 deletions

File diff suppressed because one or more lines are too long

View File

@ -38,7 +38,6 @@ Polymer( 'controller-option', {
} }
} }
this.super(); this.super();
}, },

View File

@ -30,7 +30,7 @@ gulp.task( 'build', ['vulcanize'], function() {
return gulp.src( 'build/gui.html' ) return gulp.src( 'build/gui.html' )
.pipe( $.replace( /\\/g, '\\\\' ) ) .pipe( $.replace( /\\/g, '\\\\' ) )
.pipe( $.replace( /'/g, '\\\'' ) ) .pipe( $.replace( /'/g, '\\\'' ) )
.pipe( $.replace( /^( .* )$/gm, '\'$1\',' ) ) .pipe( $.replace( /^(.*)$/gm, '\'$1\',' ) )
.pipe( $.insert.wrap( 'document.write( [', '].join( "\\n" ) )' ) ) .pipe( $.insert.wrap( 'document.write( [', '].join( "\\n" ) )' ) )
.pipe( $.rename( 'gui.js' ) ) .pipe( $.rename( 'gui.js' ) )
.pipe( gulp.dest( 'build' ) ); .pipe( gulp.dest( 'build' ) );