Make jshint happy
This commit is contained in:
parent
57dec8f2fc
commit
a3ce77831d
|
@ -103,7 +103,7 @@ var Controller = Ember.Controller.extend({
|
|||
},
|
||||
|
||||
runningJobs: function() {
|
||||
if(!this.get('config.pro')) { return [] };
|
||||
if(!this.get('config.pro')) { return []; }
|
||||
var result;
|
||||
|
||||
result = this.store.filter('job', {}, function(job) {
|
||||
|
@ -118,7 +118,7 @@ var Controller = Ember.Controller.extend({
|
|||
}.property('config.pro'),
|
||||
|
||||
queuedJobs: function() {
|
||||
if(!this.get('config.pro')) { return [] };
|
||||
if(!this.get('config.pro')) { return []; }
|
||||
|
||||
var result;
|
||||
result = this.get('store').filter('job', function(job) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user