Skip to content

Commit a797429

Browse files
authored
fixed a word 'operational' to be 'operating' (#1624)
fixed a word 'operational' to be 'operating'
2 parents 8512134 + 69e1169 commit a797429

File tree

1 file changed

+1
-1
lines changed
  • 2-ui/3-event-details/1-mouse-events-basics

1 file changed

+1
-1
lines changed

2-ui/3-event-details/1-mouse-events-basics/article.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ So if we want to support combinations like `key:Ctrl`+click, then for Mac it mak
110110

111111
Even if we'd like to force Mac users to `key:Ctrl`+click -- that's kind of difficult. The problem is: a left-click with `key:Ctrl` is interpreted as a *right-click* on MacOS, and it generates the `contextmenu` event, not `click` like Windows/Linux.
112112

113-
So if we want users of all operational systems to feel comfortable, then together with `ctrlKey` we should check `metaKey`.
113+
So if we want users of all operating systems to feel comfortable, then together with `ctrlKey` we should check `metaKey`.
114114

115115
For JS-code it means that we should check `if (event.ctrlKey || event.metaKey)`.
116116
```

0 commit comments

Comments
 (0)