unit select box appropriately disabled after saving now.

pull/477/head
William Kim 2013-08-15 14:03:25 -04:00
parent 86c6a0ea8b
commit a6bb56ed9a
1 changed files with 3 additions and 0 deletions

View File

@ -629,14 +629,17 @@ var ClientFormView = Backbone.View.extend({
if (this.model.get("accessTokenValiditySeconds") == null) {
$("#access-token-timeout-time", this.$el).prop('disabled',true);
$("#access-token-timeout-unit", this.$el).prop('disabled',true);
}
if (this.model.get("refreshTokenValiditySeconds") == null) {
$("#refresh-token-timeout-time", this.$el).prop('disabled',true);
$("#refresh-token-timeout-unit", this.$el).prop('disabled',true);
}
if (this.model.get("idTokenValiditySeconds") == null) {
$("#id-token-timeout-time", this.$el).prop('disabled',true);
$("#id-token-timeout-unit", this.$el).prop('disabled',true);
}
// toggle other dynamic fields