Skip to content

Instantly share code, notes, and snippets.

@gabrielmiller
gabrielmiller / gist:7538755
Last active December 28, 2015 17:49
angular service
// ----------------
// app.js
// ----------------
var myApp = angular.module('myApp', ['ngRoute','myControllers','myServices']);
myApp.config(['$routeProvider',
function($routeProvider, authentication) {
$routeProvider.when('/', {
authentication: false,