Skip to content
Snippets Groups Projects
Commit 664b9697 authored by svornost's avatar svornost
Browse files

missing semicolons

parent f399af04
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,7 @@ App.Update.CustomSlaveOrder = function(customSlaveOrder) { ...@@ -6,7 +6,7 @@ App.Update.CustomSlaveOrder = function(customSlaveOrder) {
if (jsDef(customSlaveOrder.amp) && customSlaveOrder.amp === 1) { if (jsDef(customSlaveOrder.amp) && customSlaveOrder.amp === 1) {
customSlaveOrder.leg = {left: null, right: null}; customSlaveOrder.leg = {left: null, right: null};
} else { } else {
customSlaveOrder.leg = {left: new App.Entity.LimbState(), right: new App.Entity.LimbState()} customSlaveOrder.leg = {left: new App.Entity.LimbState(), right: new App.Entity.LimbState()};
} }
} }
...@@ -14,7 +14,7 @@ App.Update.CustomSlaveOrder = function(customSlaveOrder) { ...@@ -14,7 +14,7 @@ App.Update.CustomSlaveOrder = function(customSlaveOrder) {
if (jsDef(customSlaveOrder.amp) && customSlaveOrder.amp === 1) { if (jsDef(customSlaveOrder.amp) && customSlaveOrder.amp === 1) {
customSlaveOrder.arm = {left: null, right: null}; customSlaveOrder.arm = {left: null, right: null};
} else { } else {
customSlaveOrder.arm = {left: new App.Entity.LimbState(), right: new App.Entity.LimbState()} customSlaveOrder.arm = {left: new App.Entity.LimbState(), right: new App.Entity.LimbState()};
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment