Skip to content

Instantly share code, notes, and snippets.

View AnthonyClink's full-sized avatar

Anthony J Clink AnthonyClink

  • Clinkworks
  • Beaverton, Oregon
View GitHub Profile
(function( ng, app ) {
"use strict";
// I provide a repository for the quests.
app.service(
"questService",
function( $q, $resource, $http, _, categoryService ) {
var QuestbookAPI = $resource( 'http://174.126.249.6\\:8080/worldcraft/quests' , {}, { query: {method: 'GET', isArray: true} });