##// END OF EJS Templates
Don't scroll to bottom when last cell is selected.
Don't scroll to bottom when last cell is selected.

File last commit:

r4352:c5b0c06e
r4604:2c580e75
Show More
namespace.js
23 lines | 478 B | application/javascript | JavascriptLexer
var IPython = IPython || {};
IPython.namespace = function (ns_string) {
var parts = ns_string.split('.'),
parent = IPython,
i;
// String redundant leading global
if (parts[0] === "IPython") {
parts = parts.slice(1);
}
for (i=0; i<parts.length; i+=1) {
// Create property if it doesn't exist
if (typeof parent[parts[i]] === "undefined") {
parent[parts[i]] == {};
}
}
return parent;
};