瀏覽代碼

Additional key checks for browser compatibility (#2539)

Not all browsers recognize e.key === 'Escape'; some use 'Esc' and some only respond to the keyCode.
master
Noëlle Anthony 7 年之前
committed by Matt Jankowski
父節點
當前提交
c67d3c990b
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. +2
    -1
      app/assets/javascripts/components/features/ui/components/modal_root.jsx

+ 2
- 1
app/assets/javascripts/components/features/ui/components/modal_root.jsx 查看文件

@@ -22,7 +22,8 @@ class ModalRoot extends React.PureComponent {
}

handleKeyUp (e) {
if (e.key === 'Escape' && !!this.props.type) {
if ((e.key === 'Escape' || e.key === 'Esc' || e.keyCode === 27)
&& !!this.props.type) {
this.props.onClose();
}
}


Loading…
取消
儲存