Merge pull request #6483 from edx/hotfix/ecom-876

Fix for ECOM-876
This commit is contained in:
Will Daly
2015-01-07 13:07:39 -05:00

View File

@@ -55,7 +55,7 @@ var edx = edx || {};
minPrice: el.data('course-mode-min-price'),
contributionAmount: el.data('contribution-amount'),
suggestedPrices: _.filter(
(el.data('course-mode-suggested-prices') || "").split(","),
(el.data('course-mode-suggested-prices').toString()).split(","),
function( price ) { return Boolean( price ); }
),
currency: el.data('course-mode-currency'),