Skip to content

Commit 5168e4a

Browse files
merging all conflicts
2 parents 0031db3 + c93286c commit 5168e4a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

content/docs/accessibility.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ Hãy chắc chắn rằng tất cả chức năng được sử dụng thông qu
247247

248248
```javascript{12-14,26-30}
249249
class OuterClickExample extends React.Component {
250-
constructor(props) {
250+
constructor(props) {
251251
super(props);
252252
253253
this.state = { isOpen: false };
@@ -298,7 +298,11 @@ constructor(props) {
298298

299299
<img src="../images/docs/outerclick-with-keyboard.gif" alt="A toggle button opening a popover list implemented with the click outside pattern and operated with the keyboard showing the popover not being closed on blur and it obscuring other screen elements." />
300300

301+
<<<<<<< HEAD
301302
Chúng ta cũng có thể đạt được chức năng tương tự bằng cách sử dụng những event handlers thích hợp, như `onBlur``onFocus`:
303+
=======
304+
The same functionality can be achieved by using appropriate event handlers instead, such as `onBlur` and `onFocus`:
305+
>>>>>>> c93286c071bca17ecba91cd130908fe2e33a4766
302306
303307
```javascript{19-29,31-34,37-38,40-41}
304308
class BlurExample extends React.Component {

0 commit comments

Comments
 (0)