From e36dd9970aa67a157b56de31f417240cde605ff8 Mon Sep 17 00:00:00 2001 From: Berkeley Martinez Date: Wed, 12 Aug 2015 11:46:34 -0700 Subject: [PATCH] fix rx long stack trace support --- client/index.js | 2 +- gulpfile.js | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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')); });