Display a "Close" button on load notebook error

This commit is contained in:
Grant Nestor 2018-01-02 18:18:55 -08:00
parent 3857c9201c
commit 50a03a0a9e

View File

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