Fixed inverted logic caused by renaming variables.

This commit is contained in:
Nathan Heijermans 2014-12-08 16:48:35 -05:00
parent 4440337711
commit 4925ea3e44

View File

@ -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);
});