Skip to content

Commit

Permalink
Fixed listener for watch task in grunt-contrib-jade example in README.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulyoung committed Sep 23, 2013
1 parent 68f3015 commit 0fb5e89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ var onChange = grunt.util._.debounce(function() {
changedFiles = [];
}, 200)

grunt.event.on('watch.jade', function(action, filepath) {
grunt.event.on('watch', function(action, filepath) {
changedFiles.push(filepath);
onChange();
});
Expand Down

0 comments on commit 0fb5e89

Please sign in to comment.