From 5f8fc6375f1ce94ee1a622b6b43220298afd6223 Mon Sep 17 00:00:00 2001 From: Joseph Schorr Date: Fri, 2 May 2014 21:42:36 -0400 Subject: [PATCH] Fix Stripe checkout dialog now that they've closed our hack --- static/js/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/app.js b/static/js/app.js index 2fd7aa9b5..f9b6779fb 100644 --- a/static/js/app.js +++ b/static/js/app.js @@ -1194,7 +1194,7 @@ quayApp = angular.module('quay', quayDependencies, function($provide, cfpLoading planService.getCardInfo(orgname, function(cardInfo) { if (plan.price > 0 && (previousSubscribeFailure || !cardInfo.last4)) { - var title = cardInfo.last4 ? 'Subscribe' : 'Start Free trial{{amount}}'; + var title = cardInfo.last4 ? 'Subscribe' : 'Start Trial ({{amount}} plan)'; planService.showSubscribeDialog($scope, orgname, planId, callbacks, title); return; }