##// END OF EJS Templates
Merge pull request #3969 from Carreau/usestrict...
Merge pull request #3969 from Carreau/usestrict "use strict" in most (if not all) our javascript plus fix one variable leaking in global namespace

File last commit:

r12103:dc60758c
r12232:d5724045 merge
Show More
namespace.js
32 lines | 852 B | application/javascript | JavascriptLexer
Brian E. Granger
More review changes....
r4609 //----------------------------------------------------------------------------
// Copyright (C) 2008-2011 The IPython Development Team
//
// 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 || {};
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