| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 UI.Dialog = class extends UI.GlassPane { | 31 UI.Dialog = class extends UI.GlassPane { |
| 32 constructor() { | 32 constructor() { |
| 33 super(); | 33 super(); |
| 34 this.registerRequiredCSS('ui/dialog.css'); | 34 this.registerRequiredCSS('ui/dialog.css'); |
| 35 this.contentElement.tabIndex = 0; | 35 this.contentElement.tabIndex = 0; |
| 36 this.contentElement.addEventListener('focus', () => this.widget().focus(), f
alse); | 36 this.contentElement.addEventListener('focus', () => this.widget().focus(), f
alse); |
| 37 this.contentElement.addEventListener('keydown', this._onKeyDown.bind(this),
false); | 37 this.contentElement.addEventListener('keydown', this._onKeyDown.bind(this),
false); |
| 38 this.widget().setDefaultFocusedElement(this.contentElement); | |
| 39 this.setPointerEventsBehavior(UI.GlassPane.PointerEventsBehavior.BlockedByGl
assPane); | 38 this.setPointerEventsBehavior(UI.GlassPane.PointerEventsBehavior.BlockedByGl
assPane); |
| 40 this.setOutsideClickCallback(event => { | 39 this.setOutsideClickCallback(event => { |
| 41 this.hide(); | 40 this.hide(); |
| 42 event.consume(true); | 41 event.consume(true); |
| 43 }); | 42 }); |
| 44 /** @type {!Map<!HTMLElement, number>} */ | 43 /** @type {!Map<!HTMLElement, number>} */ |
| 45 this._tabIndexMap = new Map(); | 44 this._tabIndexMap = new Map(); |
| 46 /** @type {?UI.WidgetFocusRestorer} */ | 45 /** @type {?UI.WidgetFocusRestorer} */ |
| 47 this._focusRestorer = null; | 46 this._focusRestorer = null; |
| 48 this._closeOnEscape = true; | 47 this._closeOnEscape = true; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 /** | 118 /** |
| 120 * @param {!Event} event | 119 * @param {!Event} event |
| 121 */ | 120 */ |
| 122 _onKeyDown(event) { | 121 _onKeyDown(event) { |
| 123 if (this._closeOnEscape && event.keyCode === UI.KeyboardShortcut.Keys.Esc.co
de) { | 122 if (this._closeOnEscape && event.keyCode === UI.KeyboardShortcut.Keys.Esc.co
de) { |
| 124 event.consume(true); | 123 event.consume(true); |
| 125 this.hide(); | 124 this.hide(); |
| 126 } | 125 } |
| 127 } | 126 } |
| 128 }; | 127 }; |
| OLD | NEW |