Update bootstrap.js
This commit is contained in:
parent
238e1f5413
commit
7e5a0c3812
|
@ -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;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue