mirror of
https://github.com/jupyter/notebook.git
synced 2025-04-06 13:50:29 +08:00
Fixed inverted logic caused by renaming variables.
This commit is contained in:
parent
4440337711
commit
4925ea3e44
@ -279,8 +279,8 @@ define([
|
||||
nnw.warning(error.message || "Notebook copy failed");
|
||||
});
|
||||
|
||||
this.events.on('toggle_other_client_output.Notebook', function(evt, ignored) {
|
||||
var msg = (ignored? "Ignoring": "Showing") + " output from other clients";
|
||||
this.events.on('toggle_other_client_output.Notebook', function(evt, include_output) {
|
||||
var msg = (include_output? "Showing": "Ignoring") + " output from other clients";
|
||||
nnw.set_message(msg, 2000);
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user