Skip to content

Instantly share code, notes, and snippets.

@jraff
Last active August 29, 2015 14:15
Show Gist options
  • Save jraff/2e54c98c78a269a82d91 to your computer and use it in GitHub Desktop.
Save jraff/2e54c98c78a269a82d91 to your computer and use it in GitHub Desktop.
function DashboardService($http) {
this.dashboards = [
'Dashboard1',
'Dashboard2'
];
this.getDashboard = function() {
return {};
};
this.getDashboards = function() {
return ['foo'];
};
}
angular.module('Dashboard').service('DashboardService', DashboardService);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment