fix rx long stack trace support

pull/1741/head
Berkeley Martinez 2015-08-12 11:46:34 -07:00
parent ca01115674
commit e36dd9970a
2 changed files with 4 additions and 3 deletions

View File

@ -16,7 +16,7 @@ const services = new Fetchr({
xhrPath: '/services'
});
Rx.longStackSupport = !!debug.enabled;
Rx.config.longStackSupport = !!debug.enabled;
// returns an observable
app$(history)

View File

@ -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'));
});