Update bootstrap.js

This commit is contained in:
Robin Nilsson 2014-09-25 10:00:42 +02:00
parent 238e1f5413
commit 7e5a0c3812
1 changed files with 6 additions and 1 deletions

View File

@ -18,6 +18,11 @@ fandango.defaults({
exports: function () { // String (the global variable name) or a function; returning the desired variable. exports: function () { // String (the global variable name) or a function; returning the desired variable.
return CryptoJS.AES; return CryptoJS.AES;
} }
},
md5: {
exports: function () {
return CryptoJS.MD5;
}
} }
} }
}); });
@ -31,4 +36,4 @@ require(['cryptalk'], function () {}, function (e) {
} }
throw e; throw e;
}); });