Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had to change this to

Suggested change
'inc/shim/base64binary.js'
'inc/shim/Base64binary.js'

(Mind the capitalization.)

]
},
uglify: {
Expand All @@ -44,4 +44,4 @@ module.exports = function (grunt) {
///
grunt.registerTask('default', ['concat', 'uglify']);
///
};
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
"devDependencies": {
"grunt": "~0.4.0",
"grunt-contrib-concat": "~0.1.3",
"grunt-contrib-uglify": "~0.1.2"
"grunt-contrib-uglify": "~1.0.1"
}
}