Skip to content

Instantly share code, notes, and snippets.

@daman2408
daman2408 / HomeController.js
Created March 21, 2016 21:53
Suggestion Box - Routing issue
app.controller('HomeController', ['$scope','suggestions', function($scope, suggestions){
$scope.helloWorld = 'Hello, AngularJS!';
$scope.posts = suggestions.posts;
$scope.addSuggestion = function(){
//if input is empty
if(!$scope.title || $scope.title == ''){
return;
}
//push suggestions into box
$scope.posts.push({