Advertisement
Guest User

Untitled

a guest
Mar 27th, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <div class="col-sm-4 featureFooter text-center no-padding">
  2.     <p><%=features[0].feature_value%> items included</p>
  3.     <% if(typeof update !== "undefined") { %>
  4.         <% if( update === true) { %>
  5.             <div class="active-plan">
  6.                 <img src="src/img/active_plan.png"/>
  7.                 <label class="active-plan">ACTIVE</button>
  8.             </div>
  9.         <% } else { %>
  10.             <% if (active < id) { %>
  11.             <button class="startFree upgrade-to-plan" data-price="<%=price%>"
  12.             data-id="<%=id%>">UPGRADE NOW</button>
  13.             <% } else { %>
  14.             <button class="startFree text-left no-padding downgrade-to-plan"
  15.             data-price="<%=price%>" data-id="<%=id%>">
  16.                 DOWNGRADE NOW</button>
  17.             <% } %>
  18.         <% } %>
  19.  
  20.     <% } else if (typeof credit_card !== "undefined") { %>
  21.             <% if( features[0].feature_value === "100") { %>
  22.             <button class="startFree add-card-to-plan" data-price="<%=price%>"
  23.             data-id="<%=id%>">ADD CREDIT CARD</button>
  24.             <% }  else {%>
  25.             <button class="startFree upgrade-add-card-to-plan"
  26.             data-price="<%=price%>" data-id="<%=id%>">UPGRADE PLAN</button>
  27.             <% } %>
  28.         <% } else {%>
  29.             <button class="startFree" data-id="<%=id%>">START FOR FREE</button>
  30.     <% } %>
  31. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement