Skip to content

Instantly share code, notes, and snippets.

@argelius
Created December 15, 2014 05:57
Show Gist options
  • Save argelius/c6a2f8d541dc8f9d0d37 to your computer and use it in GitHub Desktop.
Save argelius/c6a2f8d541dc8f9d0d37 to your computer and use it in GitHub Desktop.
Onsen weather sample app
// app.js
(function() {
'use strict';
angular.module('app', ['onsen'])
// OpenWeatherMap API returns temperature in degrees Kelvin.
.filter('kelvinToCelsius', function() {
return function(kelvin) {
return parseFloat(kelvin) - 273.15;
};
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment