Marius Treitz

Results 2 issues of Marius Treitz

I'm unable to make gulp-compass compile anything coming piped through gulp-watch. This works: ``` return gulp.src('app/styles/base.scss') .pipe(compass({ sass: 'app', css: '.tmp' })); ``` This doesn't work: ``` return gulp.src('app/styles/base.scss') .pipe(watch('app/styles/base.scss'))...

When scrolling in Chrome on Mac, `event.originalEvent.wheelDelta` is populated with both the horizontal and vertical delta. So when scrolling horizontally, `this.scrollTop === 0`, because we're not scrolling up or down,...