Skip to content

Commit

Permalink
fix rx long stack trace support
Browse files Browse the repository at this point in the history
  • Loading branch information
Berkeley Martinez authored and Berkeley Martinez committed Aug 12, 2015
1 parent ca01115 commit e36dd99
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const services = new Fetchr({
xhrPath: '/services'
});

Rx.longStackSupport = !!debug.enabled;
Rx.config.longStackSupport = !!debug.enabled;

// returns an observable
app$(history)
Expand Down
5 changes: 3 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down Expand Up @@ -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'));
});
Expand Down

0 comments on commit e36dd99

Please sign in to comment.