##// END OF EJS Templates
Add an extended range abbreviation including a step value
Add an extended range abbreviation including a step value

File last commit:

r16243:a9897bb8
r17061:1ff31108
Show More
namespace.js
34 lines | 879 B | application/javascript | JavascriptLexer
Brian E. Granger
More review changes....
r4609 //----------------------------------------------------------------------------
MinRK
add `setup.py jsversion`...
r13536 // Copyright (C) 2011 The IPython Development Team
Brian E. Granger
More review changes....
r4609 //
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
//----------------------------------------------------------------------------
Brian E. Granger
Implemented module and namespace pattern in js notebook.
r4352 var IPython = IPython || {};
MinRK
master is 3.0.0-dev
r16243 IPython.version = "3.0.0-dev";
MinRK
add `setup.py jsversion`...
r13536
Brian E. Granger
Implemented module and namespace pattern in js notebook.
r4352 IPython.namespace = function (ns_string) {
Matthias BUSSONNIER
"use strict" in most (if not all) our javascript...
r12103 "use strict";
Brian E. Granger
Implemented module and namespace pattern in js notebook.
r4352 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") {
Stefan van der Walt
Clean up javascript based on js2-mode feedback.
r5479 parent[parts[i]] = {};
Brian E. Granger
Implemented module and namespace pattern in js notebook.
r4352 }
}
return parent;
};
Brian E. Granger
Splitting notebook.js into muliple files for development ease.
r4349