Skip to content

Commit

Permalink
missing semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
sascha-hendel committed Nov 30, 2011
1 parent 34b671a commit c86894e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scenejs/core/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ var SceneJS = {
},

_parseNodeJSON : function(json, scene) {
var newNode = this._createNode(json, scene)
var newNode = this._createNode(json, scene);
scene = scene || newNode;
newNode.scene = scene;
if (json.nodes) {
Expand Down Expand Up @@ -313,7 +313,7 @@ var SceneJS = {
var o2 = {};
for (var name in o) {
if (o.hasOwnProperty(name)) {
o2[name] = o[name]
o2[name] = o[name];
}
}
return o2;
Expand Down

0 comments on commit c86894e

Please sign in to comment.