Update notif list warning when importing from a list (#648)

This commit is contained in:
Devin Buhl 2017-02-07 16:29:12 -05:00 committed by GitHub
parent 0cb15121e5
commit 32c5c4d741
1 changed files with 2 additions and 2 deletions

View File

@ -187,13 +187,13 @@ module.exports = Marionette.Layout.extend({
_importSelected : function() {
var selected = this.importGrid.getSelectedModels();
console.log(selected);
// console.log(selected);
var promise = MoviesCollection.importFromList(selected);
this.ui.importSelected.spinForPromise(promise);
this.ui.importSelected.addClass('disabled');
Messenger.show({
message : "Importing {0} movies. This can take multiple minutes depending on how many movies should be imported. Don't close this browser window until it is finished!".format(selected.length),
message : "Importing {0} movies. Don't close this browser window until it has finished".format(selected.length),
hideOnNavigate : false,
hideAfter : 30,
type : "error"