dont bother with tooltips

This commit is contained in:
Tommy Parnell
2015-08-21 13:16:40 -04:00
parent dc38837191
commit 75b2efa853
2 changed files with 3 additions and 3 deletions

View File

@@ -60,7 +60,7 @@ gulp.task('develop', function () {
gulp.task('minifyJs', function() {
return gulp.src(['components/**/*.min.js','js/*.js'])
.pipe(uglify())
.pipe(uglify({mangle:false}))
.pipe(concat('bowr.js'))
.pipe(gulp.dest('js'));
});