Skip to content

Commit

Permalink
Fixed a missing var which was causing linting to fail
Browse files Browse the repository at this point in the history
  • Loading branch information
stucox committed Mar 24, 2013
1 parent a613b03 commit db1893e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = function( grunt ) {
' */'
},
meta: {

},
qunit: {
files: ['test/index.html']
Expand Down
2 changes: 1 addition & 1 deletion src/isEventSupported.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ define(['ModernizrProto', 'createElement'], function( ModernizrProto, createElem

// Detect whether event support can be detected via `in`. Test on a DOM element
// using the "blur" event b/c it should always exist. bit.ly/event-detection
needsFallback = !('onblur' in document.documentElement);
var needsFallback = !('onblur' in document.documentElement);

/**
* @param {string|*} eventName is the name of an event to test for (e.g. "resize")
Expand Down

0 comments on commit db1893e

Please sign in to comment.