blob: 259dd4ee02205b62ccc6cd9bf271efe611cc38f3 [file] [log] [blame]
'use strict';
/* Filters */
angular.module('myApp.filters', []).
filter('interpolate', ['version', function(version) {
return function(text) {
return String(text).replace(/\%VERSION\%/mg, version);
}
}]);