Skip to content

Instantly share code, notes, and snippets.

Created February 20, 2013 03:39
Show Gist options
  • Save anonymous/4992673 to your computer and use it in GitHub Desktop.
Save anonymous/4992673 to your computer and use it in GitHub Desktop.
'use strict';
bubbleApp.controller('GenresCtrl', function ($scope, GenresService, $rootScope) {
$rootScope.loading = true; // or $scope.$root.loading
$scope.genres = GenresService.query(function () {
$rootScope.loading = false; //or $scope.$root.loading
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment