Skip to content

Commit

Permalink
Merge pull request #114 from epeli/master
Browse files Browse the repository at this point in the history
Fix module.exports for Browserify
  • Loading branch information
madrobby committed May 12, 2014
2 parents 21e3785 + 26e75d7 commit 0f09fc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keymaster.js
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,6 @@
global.key.noConflict = noConflict;
global.key.unbind = unbindKey;

if(typeof module !== 'undefined') module.exports = key;
if(typeof module !== 'undefined') module.exports = assignKey;

})(this);

0 comments on commit 0f09fc1

Please sign in to comment.