]> git.proxmox.com Git - mirror_xterm.js.git/commitdiff
Started documenting events
authorparis <pariskasidiaris@gmail.com>
Fri, 2 May 2014 18:57:48 +0000 (18:57 +0000)
committerparis <pariskasidiaris@gmail.com>
Fri, 2 May 2014 18:57:48 +0000 (18:57 +0000)
docs/events.rst [new file with mode: 0644]
docs/index.rst

diff --git a/docs/events.rst b/docs/events.rst
new file mode 100644 (file)
index 0000000..4988466
--- /dev/null
@@ -0,0 +1,43 @@
+------
+Events
+------
+
+focus
+^^^^^
+This event is fired, when the Terminal gets focus.
+
+blur
+^^^^
+This event is fired, when the Terminal loses focus.
+
+open
+^^^^
+This event is fired, when the Terminal gets opened into a DOM Element.
+
+keydown
+^^^^^^^
+This event is fired, when the `keydown` DOM Event gets triggered on the Terminal.
+
+keypress
+^^^^^^^^
+This event is fired, when the `keypress` DOM Event gets triggered on the Terminal.
+
+key
+^^^
+This event is fired, when a key is being handled by the Terminal.
+
+resize
+^^^^^^
+This event is being fired, when the Terminal view gets resized by the `resize` method.
+
+data
+^^^^
+This event is being fired, when a chunk of input data gets handled by the terminal.
+
+copy
+^^^^
+This event is fired, when the `copy` DOM Event gets triggered on the Terminal.
+
+paste
+^^^^^
+This event is fired, when the `paste` DOM Event gets triggered on the Terminal.
\ No newline at end of file
index 1633d2b10bab55ff0be9f63957cd22b0e81a4b8e..7dd43b779345be92cd39d06a478e8a7f337a917b 100644 (file)
@@ -10,6 +10,8 @@ Contents:
 
 .. toctree::
    :maxdepth: 2
+   
+   events