Skip to content

Instantly share code, notes, and snippets.

View elvispro's full-sized avatar

elvis elvispro

  • beedeep
  • china
View GitHub Profile
@elvispro
elvispro / app.js
Last active August 29, 2015 14:10 — forked from auser/app.js
angular.module('myApp', ['ngRoute'])
.provider('Weather', function() {
var apiKey = "";
this.getUrl = function(type, ext) {
return "http://api.wunderground.com/api/" +
this.apiKey + "/" + type + "/q/" +
ext + '.json';
};