Skip to content

Commit

Permalink
1.3: more jshint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
johnpapa committed Nov 15, 2014
1 parent dde4755 commit 83990ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ng-1.3 playground/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ function serve(args) {
.on('restart', function() {
log('restarted!');
setTimeout(function () {
browserSync.reload({ stream: false });
browserSync.reload({stream: false});
}, 1000);
});
}
Expand All @@ -392,7 +392,7 @@ function serve(args) {
* Start BrowserSync
*/
function startBrowserSync() {
if(!env.browserSync || browserSync.active) {
if (!env.browserSync || browserSync.active) {
return;
}

Expand Down

0 comments on commit 83990ed

Please sign in to comment.