From f06de5236582a075db2df1bb99186dd3c36b58dd Mon Sep 17 00:00:00 2001 From: Gaurav Trivedi Date: Sun, 18 Mar 2018 00:31:28 -0400 Subject: [PATCH] Fix path for Base64 --- Gruntfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index f79dd59e..8669010e 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -27,8 +27,8 @@ module.exports = function (grunt) { 'js/util/dom_request_xhr.js', // req when using XHR 'js/util/dom_request_script.js', // req otherwise // 'js/widget/loader.js', // optional - 'inc/polyfill/Base64.js', - 'inc/polyfill/base64binary.js' + 'inc/shim/Base64.js', + 'inc/shim/base64binary.js' ] }, uglify: { @@ -44,4 +44,4 @@ module.exports = function (grunt) { /// grunt.registerTask('default', ['concat', 'uglify']); /// -}; \ No newline at end of file +};