Skip to content

Instantly share code, notes, and snippets.

View kevinthompson's full-sized avatar
🕹️

Kevin Thompson kevinthompson

🕹️
View GitHub Profile
@chantastic
chantastic / app.js
Last active December 20, 2015 12:39
Setting up ng-resouce in an angular app.
'use strict';
var stintApp = angular.module('stintApp', ['ngResource'])
.config(['$routeProvider', function($routeProvider) {
$routeProvider
.when('/', {
templateUrl: 'views/main.html',
controller: 'MainCtrl'
})
.when('/projects', {