From 7e5a0c38125fa9b3344cb134ae8cc2b25e83874a Mon Sep 17 00:00:00 2001 From: Robin Nilsson Date: Thu, 25 Sep 2014 10:00:42 +0200 Subject: [PATCH] Update bootstrap.js --- public/js/bootstrap.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/public/js/bootstrap.js b/public/js/bootstrap.js index f012f80..cfb973a 100644 --- a/public/js/bootstrap.js +++ b/public/js/bootstrap.js @@ -18,6 +18,11 @@ fandango.defaults({ exports: function () { // String (the global variable name) or a function; returning the desired variable. return CryptoJS.AES; } + }, + md5: { + exports: function () { + return CryptoJS.MD5; + } } } }); @@ -31,4 +36,4 @@ require(['cryptalk'], function () {}, function (e) { } throw e; -}); \ No newline at end of file +});