mapping
7 years ago
angular-chosen.directive.js
7 years ago
attributes.service.js
7 years ago
autodetect.directive.js
7 years ago
cascade.directive.js
7 years ago
contenteditable.directive.js
7 years ago
currency.service.js
7 years ago
droppable.directive.js
7 years ago
export.service.js
7 years ago
focusMeWhenEnabled.directive.js
7 years ago
googleCategoriesService.js
7 years ago
main.controller.js
7 years ago
styledInput.directive.js
7 years ago
template.service.js
7 years ago
tipsy.directive.js
7 years ago
wpHttp.service.js
7 years ago
currency.service.js
18 lines
| 1 | GoogleMerchants.factory('currencyService', [function(){ |
| 2 | |
| 3 | var internalCurrency = null; |
| 4 | var internalCurrencyCode = null; |
| 5 | |
| 6 | return { |
| 7 | setCurrency: function(currencySymbol, currencyCode) { |
| 8 | internalCurrency = currencySymbol; |
| 9 | internalCurrencyCode = currencyCode; |
| 10 | }, |
| 11 | getCurrency: function() { |
| 12 | return internalCurrency; |
| 13 | }, |
| 14 | getCurrencyCode: function() { |
| 15 | return internalCurrencyCode; |
| 16 | } |
| 17 | } |
| 18 | }]); |