aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/api/mouseevent/ctrlkey/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/web/api/mouseevent/ctrlkey/index.html')
-rw-r--r--files/pl/web/api/mouseevent/ctrlkey/index.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/files/pl/web/api/mouseevent/ctrlkey/index.html b/files/pl/web/api/mouseevent/ctrlkey/index.html
new file mode 100644
index 0000000000..fbd179c6cf
--- /dev/null
+++ b/files/pl/web/api/mouseevent/ctrlkey/index.html
@@ -0,0 +1,28 @@
+---
+title: event.ctrlKey
+slug: Web/API/MouseEvent/ctrlKey
+tags:
+ - DOM
+ - Wszystkie_kategorie
+translation_of: Web/API/MouseEvent/ctrlKey
+translation_of_original: Web/API/event.ctrlKey
+original_slug: Web/API/Event/ctrlKey
+---
+<p>{{ ApiRef() }}</p>
+<h3 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h3>
+<p>Wskazuje, czy klawisz &lt;ctrl&gt; był wciśnięty podczas wywołania zdarzenia.</p>
+<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia">Składnia</h3>
+<pre class="eval">bool = event.ctrlKey
+</pre>
+<h3 id="Przyk.C5.82ad" name="Przyk.C5.82ad">Przykład</h3>
+<pre> function goInput(e) {
+ // sprawdza ctrlKey
+ if e.ctrlKey
+ // i przekazuje zdarzenie dalej
+ superSizeOutput(e);
+ else
+ doOutput(e)
+</pre>
+<h3 id="Specyfikacja" name="Specyfikacja">Specyfikacja</h3>
+<p><a class="external" href="http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/events.html#Events-MouseEvent-ctrlKey">ctrlKey</a></p>
+<p>{{ languages( { "en": "en/DOM/event.ctrlKey" } ) }}</p>