Skip to content

Commit

Permalink
Correctly import relative module using AMD loader.
Browse files Browse the repository at this point in the history
  • Loading branch information
stdavis committed Mar 21, 2014
1 parent 5e81ec2 commit 1865de0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/ladda.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
// AMD module
else if( typeof define === 'function' && define.amd ) {
define( [ 'spin' ], factory );
define( [ './spin' ], factory );
}
// Browser global
else {
Expand Down

0 comments on commit 1865de0

Please sign in to comment.