Skip to content

Instantly share code, notes, and snippets.

@arecker
Created November 13, 2015 00:50
Show Gist options
  • Save arecker/1e0f366f8583ef07b832 to your computer and use it in GitHub Desktop.
Save arecker/1e0f366f8583ef07b832 to your computer and use it in GitHub Desktop.
toStatic
angular.module('moolah')
.factory('toStatic', ['STATIC_URL', function(STATIC_URL) {
return function(i) {
return '{}{}'.format(STATIC_URL, i);
};
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment