Skip to content

Instantly share code, notes, and snippets.

@bscribner
Created January 5, 2018 14:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bscribner/0d816fb77ed8dd7173757677254cb76a to your computer and use it in GitHub Desktop.
Save bscribner/0d816fb77ed8dd7173757677254cb76a to your computer and use it in GitHub Desktop.
(function () {
var serviceModule = angular.module('externalModule', []);
serviceModule.controller("externalService", function () {
console.log("loading this");
return {
externalServiceMethod: function() {
return "External Service Method Return";
}
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment