@@ -586,7 +586,7 @@ var ClientFormView = Backbone.View.extend({
586
586
this . redirectUrisCollection = new Backbone . Collection ( ) ;
587
587
this . scopeCollection = new Backbone . Collection ( ) ;
588
588
this . contactsCollection = new Backbone . Collection ( ) ;
589
- this . defaultAcrValuesCollection = new Backbone . Collection ( ) ;
589
+ this . defaultACRvaluesCollection = new Backbone . Collection ( ) ;
590
590
this . requestUrisCollection = new Backbone . Collection ( ) ;
591
591
this . postLogoutRedirectUrisCollection = new Backbone . Collection ( ) ;
592
592
this . claimsRedirectUrisCollection = new Backbone . Collection ( ) ;
@@ -949,7 +949,7 @@ var ClientFormView = Backbone.View.extend({
949
949
defaultMaxAge : parseInt ( $ ( '#defaultMaxAge input' ) . val ( ) ) ,
950
950
contacts : this . contactsCollection . pluck ( 'item' ) ,
951
951
requestUris : this . requestUrisCollection . pluck ( 'item' ) ,
952
- defaultAcrValues : this . defaultAcrValuesCollection . pluck ( 'item' ) ,
952
+ defaultACRvalues : this . defaultACRvaluesCollection . pluck ( 'item' ) ,
953
953
requestObjectSigningAlg : this . defaultToNull ( $ ( '#requestObjectSigningAlg select' ) . val ( ) ) ,
954
954
userInfoSignedResponseAlg : this . defaultToNull ( $ ( '#userInfoSignedResponseAlg select' ) . val ( ) ) ,
955
955
userInfoEncryptedResponseAlg : this . defaultToNull ( $ ( '#userInfoEncryptedResponseAlg select' ) . val ( ) ) ,
@@ -1109,15 +1109,15 @@ var ClientFormView = Backbone.View.extend({
1109
1109
this . listWidgetViews . push ( requestUriView ) ;
1110
1110
1111
1111
// build and bind default ACR values
1112
- _ . each ( this . model . get ( 'defaultAcrValues ' ) , function ( defaultAcrValue ) {
1113
- _self . defaultAcrValuesCollection . add ( new Backbone . Model ( { item :defaultAcrValue } ) ) ;
1112
+ _ . each ( this . model . get ( 'defaultACRvalues ' ) , function ( defaultACRvalue ) {
1113
+ _self . defaultACRvaluesCollection . add ( new Backbone . Model ( { item :defaultACRvalue } ) ) ;
1114
1114
} ) ;
1115
1115
1116
1116
var defaultAcrView = new ListWidgetView ( {
1117
1117
placeholder : $ . t ( 'client.client-form.acr-values-placeholder' ) ,
1118
1118
// TODO: autocomplete from spec
1119
1119
helpBlockText : $ . t ( 'client.client-form.acr-values-help' ) ,
1120
- collection : this . defaultAcrValuesCollection } ) ;
1120
+ collection : this . defaultACRvaluesCollection } ) ;
1121
1121
$ ( '#defaultAcrValues .controls' , this . el ) . html ( defaultAcrView . render ( ) . el ) ;
1122
1122
this . listWidgetViews . push ( defaultAcrView ) ;
1123
1123
0 commit comments