Skip to content

Commit

Permalink
fix grunt task errors and warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Hamilton committed Jun 26, 2015
1 parent 86148b8 commit 14d6d62
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion client/app/scripts/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ angular
.constant('myConfig', {
'backend': 'http://45.55.31.147:9090/api/poll/',
'version': 0.2
})
});
12 changes: 6 additions & 6 deletions client/app/scripts/controllers/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ angular.module('materialPollApp')
addOpt = true;
}else {
addOpt = false;
}
if(addOpt === true){
$scope.options.push({});
}
}
if(addOpt === true){
$scope.options.push({});
}
}
};

});
});
2 changes: 1 addition & 1 deletion client/app/scripts/controllers/results.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ angular.module('materialPollApp')
}
$scope.$apply();
});
})
});
});

0 comments on commit 14d6d62

Please sign in to comment.