Skip to content

Commit

Permalink
fix my
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislas Polu committed Apr 26, 2012
1 parent a2cb759 commit 4eef67b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cell-0.3.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/cell.js
Expand Up @@ -60,7 +60,7 @@ if(typeof CELL === 'undefined')
*/
CELL.cell = function(spec, my) {
var _super = {};
var my = my || {};
my = my || {};

my.path = spec.path || '/'; /* the current cell path */
my.container = spec.container; /* the top level container */
Expand Down
2 changes: 1 addition & 1 deletion src/container.js
Expand Up @@ -47,7 +47,7 @@ if(typeof CELL === 'undefined')
*/
CELL.container = function(spec, my) {
var _super = {};
var my = my || {};
my = my || {};

my.name = spec.name || ''; /* the container name */

Expand Down

0 comments on commit 4eef67b

Please sign in to comment.