From d1f01ba55c0417c7e9bb54093c58ab9e43a03eda Mon Sep 17 00:00:00 2001 From: Eric Reed Date: Tue, 23 Apr 2013 10:38:36 -0400 Subject: [PATCH] Fix #185 --- dashboard-ui/scripts/addpluginpage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard-ui/scripts/addpluginpage.js b/dashboard-ui/scripts/addpluginpage.js index 05286fa02a..a844f90685 100644 --- a/dashboard-ui/scripts/addpluginpage.js +++ b/dashboard-ui/scripts/addpluginpage.js @@ -77,7 +77,7 @@ $('#regInfo', page).html(pkg.regInfo || ""); if (pkg.price > 0) { // Fill in PayPal info - $('premiumHasPrice', page).show(); + $('.premiumHasPrice', page).show(); $('#featureId', page).val(pkg.featureId); $('#featureName', page).val(pkg.name); $('#amount', page).val(pkg.price); @@ -94,7 +94,7 @@ }); } else { // Supporter-only feature - $('premiumHasPrice', page).hide(); + $('.premiumHasPrice', page).hide(); } } else { $('#regInfo', page).html("You must be a Media Browser Supporter in order to gain access to this feature.").trigger('create');