Skip to content

Commit

Permalink
fix space
Browse files Browse the repository at this point in the history
  • Loading branch information
ippa committed Aug 8, 2014
1 parent 53375b1 commit a454fd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var paths = files.map( function(file) { return "src/" + file } )
gulp.task('build', function() {
gulp.src(paths)
.pipe(concat("jaws.js"))
.pipe(insert.prepend("/* Built at" + (new Date()).toString() + " */\n"))
.pipe(insert.prepend("/* Built at: " + (new Date()).toString() + " */\n"))
.pipe(insert.append(';window.addEventListener("load", function() { if(jaws.onload) jaws.onload(); }, false);'))
.pipe(gulp.dest("."))
.pipe(uglify())
Expand Down

0 comments on commit a454fd3

Please sign in to comment.