diff --git a/package.json b/package.json index b8ee68117..05a845066 100644 --- a/package.json +++ b/package.json @@ -104,12 +104,12 @@ "datatables.net": "1.10.10", "datatables.net-responsive": "2.0.1", "es6-weak-map": "2.0.1", - "fec-style": "10.1.1", + "fec-style": "11.0.0", "glossary-panel": "1.0.0", "handlebars": "^4.0.5", "hbsfy": "2.2.1", "intl": "1.0.0-rc-4", - "jquery": "2.2.4", + "jquery": "3.2.1", "jquery.inputmask": "3.2.7", "keyboardjs": "0.4.2", "leaflet": "0.7.7", diff --git a/static/js/modules/download.js b/static/js/modules/download.js index 8e0ad1630..9bf039903 100644 --- a/static/js/modules/download.js +++ b/static/js/modules/download.js @@ -137,7 +137,7 @@ DownloadItem.prototype.refresh = function() { contentType: 'application/json', dataType: 'json' }); - this.promise.then(this.handleSuccess.bind(this)); + this.promise.done(this.handleSuccess.bind(this)); this.promise.fail(this.handleError.bind(this)); };