| Index: chrome/browser/resources/chromeos/login/saml_interstitial.js
|
| diff --git a/chrome/browser/resources/chromeos/login/saml_interstitial.js b/chrome/browser/resources/chromeos/login/saml_interstitial.js
|
| index 543058a0b7c41417934ca5e9cb6356477e51facd..7da3ee2f93b4c966ba05ab72f3b723a3c7861608 100644
|
| --- a/chrome/browser/resources/chromeos/login/saml_interstitial.js
|
| +++ b/chrome/browser/resources/chromeos/login/saml_interstitial.js
|
| @@ -10,15 +10,9 @@ Polymer({
|
| type: HTMLElement,
|
| },
|
|
|
| - domain: {
|
| - type: String,
|
| - observer: 'onDomainChanged_'
|
| - },
|
| + domain: {type: String, observer: 'onDomainChanged_'},
|
|
|
| - showDomainMessages_: {
|
| - type: Boolean,
|
| - value: false
|
| - }
|
| + showDomainMessages_: {type: Boolean, value: false}
|
| },
|
| ready: function() {
|
| this.changeAccountLink = this.$.changeAccountLink;
|
| @@ -28,9 +22,9 @@ Polymer({
|
| },
|
| onDomainChanged_: function() {
|
| this.$.managedBy.textContent =
|
| - loadTimeData.getStringF('enterpriseInfoMessage', this.domain);
|
| + loadTimeData.getStringF('enterpriseInfoMessage', this.domain);
|
| this.$.message.content =
|
| - loadTimeData.getStringF('samlInterstitialMessage', this.domain);
|
| + loadTimeData.getStringF('samlInterstitialMessage', this.domain);
|
| this.showDomainMessages_ = !!this.domain.length;
|
| },
|
| onSamlPageNextClicked_: function() {
|
|
|