|
@@ -48,8 +48,9 @@
|
|
});
|
|
});
|
|
module.filter('fullAddress', function () {
|
|
module.filter('fullAddress', function () {
|
|
return function (input) {
|
|
return function (input) {
|
|
|
|
+
|
|
if (!input) return input;
|
|
if (!input) return input;
|
|
- return input.replace(',','-');
|
|
|
|
|
|
+ return input.replace(/,/g,'-');
|
|
};
|
|
};
|
|
});
|
|
});
|
|
})(angular.module('app.filters'));
|
|
})(angular.module('app.filters'));
|