Skip to content

Commit 129fdeb

Browse files
authored
Merge pull request #3176 from gnestor/issue-2732
Display a "Close" button on load notebook error
2 parents 34e5ab7 + 50a03a0 commit 129fdeb

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

notebook/static/notebook/js/notebook.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -3179,8 +3179,14 @@ define([
31793179
title: i18n.msg._("Error loading notebook"),
31803180
body : msg,
31813181
buttons : {
3182-
"OK": {}
3183-
}
3182+
"Close": {
3183+
class : 'btn-danger',
3184+
click : function () {
3185+
window.close();
3186+
}
3187+
},
3188+
"Ok": {}
3189+
}
31843190
});
31853191
};
31863192

0 commit comments

Comments
 (0)