Merge pull request #3176 from gnestor/issue-2732

Display a "Close" button on load notebook error
Thomas Kluyver 8 years ago committed by GitHub
commit 129fdebb94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3179,8 +3179,14 @@ define([
title: i18n.msg._("Error loading notebook"),
body : msg,
buttons : {
"OK": {}
}
"Close": {
class : 'btn-danger',
click : function () {
window.close();
}
},
"Ok": {}
}
});
};

Loading…
Cancel
Save