Merge pull request #225 from adamcarr/master

fix(amd): remove define module name as it breaks aliasing the module name
This commit is contained in:
Estevão Soares dos Santos 2015-12-26 02:17:29 +00:00
commit 1011c0f7ac
5 changed files with 1 additions and 1 deletions

BIN
dist/showdown.js vendored

Binary file not shown.

BIN
dist/showdown.js.map vendored

Binary file not shown.

BIN
dist/showdown.min.js vendored

Binary file not shown.

Binary file not shown.

View File

@ -6,7 +6,7 @@ if (typeof module !== 'undefined' && module.exports) {
// AMD Loader
} else if (typeof define === 'function' && define.amd) {
define('showdown', function () {
define(function () {
'use strict';
return showdown;
});