mirror of
https://github.com/overleaf/overleaf.git
synced 2025-03-05 03:01:43 +00:00
change ng to use show/hide
ng-if doesn't render html until evaulated to true, need the form to be there at time of recurly.configure
This commit is contained in:
parent
ccef0760ae
commit
c050791905
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ block content
|
||||||
.alert.alert-warning.small(ng-show="genericError")
|
.alert.alert-warning.small(ng-show="genericError")
|
||||||
strong {{genericError}}
|
strong {{genericError}}
|
||||||
|
|
||||||
div()
|
div(ng-show="paymentMethod.value === 'credit_card'")
|
||||||
.row
|
.row
|
||||||
.col-xs-6
|
.col-xs-6
|
||||||
.form-group(ng-class="validation.errorFields.first_name || inputHasError(simpleCCForm.firstName) ? 'has-error' : ''")
|
.form-group(ng-class="validation.errorFields.first_name || inputHasError(simpleCCForm.firstName) ? 'has-error' : ''")
|
||||||
|
|
Loading…
Reference in a new issue