diff --git a/client/index.js b/client/index.js index c39b55c644..95be7ca9ae 100644 --- a/client/index.js +++ b/client/index.js @@ -16,7 +16,7 @@ const services = new Fetchr({ xhrPath: '/services' }); -Rx.longStackSupport = !!debug.enabled; +Rx.config.longStackSupport = !!debug.enabled; // returns an observable app$(history) diff --git a/gulpfile.js b/gulpfile.js index c55daf01da..8e1e345716 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -26,7 +26,8 @@ var Rx = require('rx'), eslint = require('gulp-eslint'); -Rx.longStackSupport = true; +Rx.config.longStackSupport = true; + var reloadDelay = 1000; var reload = sync.reload; var paths = { @@ -83,7 +84,7 @@ gulp.task('inject', function() { gulp.src('views/home.jade') .pipe(plumber({ errorHandler: errorHandler })) .pipe(inject(gulp.src(bower()), { - //ignorePath: '/public' + // ignorePath: '/public' })) .pipe(gulp.dest('views')); });