Skip to content

Instantly share code, notes, and snippets.

@TaylorAckley
Created October 29, 2016 09:24
Show Gist options
  • Save TaylorAckley/711b0f11e2bb303a9b3c604314d4f58d to your computer and use it in GitHub Desktop.
Save TaylorAckley/711b0f11e2bb303a9b3c604314d4f58d to your computer and use it in GitHub Desktop.
"use strict";
(function() {
angular.module('weatherApp')
.factory('weatherSvc', LocationSvc);
WeatherSvc.$inject = ['$q', '$window', '$http', 'CONSTANTS'];
function WeatherSvc($q, $window, $http, CONSTANTS) {
return {
getCurrentPosition: getPosition
};
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment