Skip to content

Instantly share code, notes, and snippets.

@pzaich
Created May 3, 2015 16:14
Show Gist options
  • Save pzaich/38ece4135c37c149e474 to your computer and use it in GitHub Desktop.
Save pzaich/38ece4135c37c149e474 to your computer and use it in GitHub Desktop.
library_controller.js
angular.module('example', [])
.controller('libraryController', function (Books) {
var initialize = function () {
$scope.books = Books
}
$scope.removeBook = function () {
// accessible to scope
}
initialize();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment