Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Troy Wolters committed Oct 10, 2019
1 parent d1ad77d commit f64f39e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions src/foam/core/Validation.js
Expand Up @@ -282,7 +282,8 @@ foam.CLASS({
return foam.core.ExpressionSlot.create({
obj: obj,
code: validateObject,
args: args});
args: args
});
}
]
});
Expand Down Expand Up @@ -327,7 +328,7 @@ foam.CLASS({
},
errorString: 'Please enter an email address'
}
)
);
}
return ret;
}
Expand Down
6 changes: 3 additions & 3 deletions src/foam/nanos/script/ScriptStatus.js
Expand Up @@ -9,15 +9,15 @@ foam.ENUM({
name: 'ScriptStatus',
values: [
{
name:'SCHEDULED',
name: 'SCHEDULED',
label: 'Scheduled'
},
{
name:'UNSCHEDULED',
name: 'UNSCHEDULED',
label: 'Unscheduled'
},
{
name:'RUNNING',
name: 'RUNNING',
label: 'Running'
},
{
Expand Down
2 changes: 1 addition & 1 deletion test/src/lib/Index.js
Expand Up @@ -86,7 +86,7 @@ var createData2 = function createData2(dataCount) {
var arr = [];
var count = dataCount || 20;

for (var i = 0; i < count; i++ ) {
for ( var i = 0 ; i < count ; i++ ) {
arr.push({
int: i,
float: count - i,
Expand Down

0 comments on commit f64f39e

Please sign in to comment.