Skip to content

Instantly share code, notes, and snippets.

@mandreko
Created July 27, 2015 19:12
Show Gist options
  • Save mandreko/0846b1d83fb53f071501 to your computer and use it in GitHub Desktop.
Save mandreko/0846b1d83fb53f071501 to your computer and use it in GitHub Desktop.
angular.module("area31enrollment").controller("EnrollmentsNewCtrl",
function($scope, $stateParams, $meteor) {
$scope.enrollments = $meteor.collection(Enrollments).subscribe('enrollments');
$scope.schools = $meteor.collection(Schools).subscribe('schools');
$scope.programs = $meteor.collection(Programs).subscribe('programs');
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment