| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 Polymer('viewer-password-screen', { | 5 Polymer('viewer-password-screen-legacy', { |
| 6 text: 'This document is password protected. Please enter a password.', | 6 text: 'This document is password protected. Please enter a password.', |
| 7 active: false, | 7 active: false, |
| 8 timerId: undefined, | 8 timerId: undefined, |
| 9 ready: function() { | 9 ready: function() { |
| 10 this.activeChanged(); | 10 this.activeChanged(); |
| 11 }, | 11 }, |
| 12 accept: function() { | 12 accept: function() { |
| 13 this.active = false; | 13 this.active = false; |
| 14 }, | 14 }, |
| 15 deny: function() { | 15 deny: function() { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 35 this.style.opacity = 1; | 35 this.style.opacity = 1; |
| 36 this.$.password.focus(); | 36 this.$.password.focus(); |
| 37 } else { | 37 } else { |
| 38 this.style.opacity = 0; | 38 this.style.opacity = 0; |
| 39 this.timerId = setTimeout(function() { | 39 this.timerId = setTimeout(function() { |
| 40 this.style.visibility = 'hidden'; | 40 this.style.visibility = 'hidden'; |
| 41 }.bind(this), 400); | 41 }.bind(this), 400); |
| 42 } | 42 } |
| 43 } | 43 } |
| 44 }); | 44 }); |
| OLD | NEW |