Skip to content

Commit

Permalink
Merge pull request #133 from freewind/master
Browse files Browse the repository at this point in the history
fix exports for commonjs
  • Loading branch information
arthur-e authored Nov 29, 2018
2 parents d48397f + 261be64 commit 26fbb36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wicket-gmap3.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
(function ( root, factory ) {
if ( typeof exports === 'object' ) {
// CommonJS
factory( require('./wicket') );
module.exports = factory( require('./wicket') );
} else if ( typeof define === 'function' && define.amd ) {
// AMD. Register as an anonymous module.
define( ['wicket'], factory);
Expand Down

0 comments on commit 26fbb36

Please sign in to comment.