OLD | NEW |
1 /* Copyright 2015 The Chromium Authors. All rights reserved. | 1 /* Copyright 2015 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 Polymer('gaia-password-changed', { | 6 Polymer('gaia-password-changed', { |
7 invalidate: function() { | 7 invalidate: function() { |
8 this.$.oldPasswordInput.setValid(false); | 8 this.$.oldPasswordInput.setValid(false); |
9 }, | 9 }, |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 } | 29 } |
30 }.bind(this)); | 30 }.bind(this)); |
31 }, | 31 }, |
32 | 32 |
33 focus: function() { | 33 focus: function() { |
34 if (this.$.animatedPages.selected == 0) | 34 if (this.$.animatedPages.selected == 0) |
35 this.$.oldPasswordInput.focus(); | 35 this.$.oldPasswordInput.focus(); |
36 }, | 36 }, |
37 | 37 |
38 set disabled(value) { | 38 set disabled(value) { |
39 var controls = this.$.animatedPages.querySelectorAll( | 39 this.$.oldPasswordInput.disabled = value; |
40 ':host /deep/ .footer /deep/ [role="button"]'); | |
41 for (var i = 0, control; control = controls[i]; ++i) { | |
42 control.disabled = value; | |
43 } | |
44 }, | 40 }, |
45 | 41 |
46 onForgotPasswordClicked: function() { | 42 onForgotPasswordClicked: function() { |
47 this.clearPassword(); | 43 this.clearPassword(); |
48 this.$.animatedPages.selected += 1; | 44 this.$.animatedPages.selected += 1; |
49 }, | 45 }, |
50 | 46 |
51 onTryAgainClicked: function() { | 47 onTryAgainClicked: function() { |
52 this.$.oldPasswordInput.setValid(true); | 48 this.$.oldPasswordInput.setValid(true); |
53 this.$.animatedPages.selected -= 1; | 49 this.$.animatedPages.selected -= 1; |
(...skipping 12 matching lines...) Expand all Loading... |
66 this.$.closeButton.hidden = true; | 62 this.$.closeButton.hidden = true; |
67 this.$.animatedPages.selected = 2; | 63 this.$.animatedPages.selected = 2; |
68 this.fire('proceedAnyway'); | 64 this.fire('proceedAnyway'); |
69 }, | 65 }, |
70 | 66 |
71 onClose: function() { | 67 onClose: function() { |
72 this.disabled = true; | 68 this.disabled = true; |
73 this.fire('cancel'); | 69 this.fire('cancel'); |
74 }, | 70 }, |
75 }); | 71 }); |
OLD | NEW |