mirror of
https://github.com/jupyter/notebook.git
synced 2024-12-21 04:10:17 +08:00
Merge pull request #8203 from minrk/kernel.js-switch
autosave & reload on kernelspec switch
This commit is contained in:
commit
6d786be40b
@ -94,6 +94,7 @@ define([
|
||||
|
||||
KernelSelector.prototype._spec_changed = function (event, ks) {
|
||||
/** event handler for spec_changed */
|
||||
var that = this;
|
||||
|
||||
// update selection
|
||||
this.current_selection = ks.name;
|
||||
@ -157,6 +158,15 @@ define([
|
||||
console.warn("Failed to load kernel.js from ", ks.resources['kernel.js'], err);
|
||||
}
|
||||
);
|
||||
this.events.on('spec_changed.Kernel', function (evt, new_ks) {
|
||||
if (ks.name != new_ks.name) {
|
||||
console.warn("kernelspec %s had custom kernel.js. Forcing page reload for %s.",
|
||||
ks.name, new_ks.name);
|
||||
that.notebook.save_notebook().then(function () {
|
||||
window.location.reload();
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user