##// END OF EJS Templates
Fix typos, rephrase english. Thanks Kyle.
Matthias Bussonnier -
Show More
@@ -81,7 +81,7 define([
81 .attr('href',css_url);
81 .attr('href',css_url);
82 },
82 },
83 error:function(){
83 error:function(){
84 console.warn(new_mode_url+' does not provide custom URL, you might see a 404 error that shoudl not prevent '+
84 console.warn(new_mode_url+' does not provide custom URL, you might see a 404 error that should not prevent '+
85 ' the Jupyter notebook from working :' ,css_url );
85 ' the Jupyter notebook from working :' ,css_url );
86 }
86 }
87 });
87 });
@@ -109,9 +109,9 define([
109 if(new_mode && new_mode.onload){
109 if(new_mode && new_mode.onload){
110 new_mode.onload();
110 new_mode.onload();
111 } else {
111 } else {
112 console.warn("The current kernel seem to define a kernel.js file; though this file does"+
112 console.warn("The current kernel defined a kernel.js file but does not contain"+
113 "not contain any asynchronous module definition. This is undefined behavior"+
113 "any asynchronous module definition. This is undefined behavior"+
114 "which is not recommeneded");
114 "which is not recommended");
115 }
115 }
116 },
116 },
117 function(err){
117 function(err){
@@ -122,7 +122,7 define([
122 };
122 };
123
123
124 KernelSelector.prototype.lock_switch = function() {
124 KernelSelector.prototype.lock_switch = function() {
125 console.warn('switching kernel is not guarantied to work !');
125 console.warn('switching kernel is not guaranteed to work !');
126 };
126 };
127
127
128 KernelSelector.prototype.bind_events = function() {
128 KernelSelector.prototype.bind_events = function() {
@@ -1870,7 +1870,7 define([
1870 // technically not perfect, we should check that the kernelspec matches
1870 // technically not perfect, we should check that the kernelspec matches
1871 this.kernel_selector.change_kernel(this.metadata.kernelspec.name);
1871 this.kernel_selector.change_kernel(this.metadata.kernelspec.name);
1872 } else {
1872 } else {
1873 console.log('do not have handle on kernnel_selector');
1873 console.log('do not have handle on kernel_selector');
1874 }
1874 }
1875 }
1875 }
1876
1876
General Comments 0
You need to be logged in to leave comments. Login now