Skip to content

Commit 1a4a76b

Browse files
committedJan 12, 2014
Add shorted event control names
1 parent 7d3c228 commit 1a4a76b

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
* Add `Document.body` and `Document.head` shortcut to element instances.
44

5+
* Add `Event` methods: `prevented?`, `prevent`, `stopped?` and `stop` to
6+
replace longer javascript names.
7+
58
## 0.1.2 2013-12-01
69

710
* Support setting html content through `Element#html()`.

‎opal/opal-jquery/event.rb

+14-7
Original file line numberDiff line numberDiff line change
@@ -26,32 +26,39 @@ def target
2626
##
2727
# Propagation
2828

29-
def default_prevented?
29+
def prevented?
3030
`#@native.isDefaultPrevented()`
3131
end
3232

33-
def prevent_default
33+
def prevent
3434
`#@native.preventDefault()`
3535
end
3636

37-
def propagation_stopped?
37+
def stopped?
3838
`#@native.propagationStopped()`
3939
end
4040

41-
def stop_propagation
41+
def stop
4242
`#@native.stopPropagation()`
4343
end
4444

45-
def stop_immediate_propagation
45+
def stop_immediate
4646
`#@native.stopImmediatePropagation()`
4747
end
4848

4949
# Stops propagation and prevents default action.
5050
def kill
51-
stop_propagation
52-
prevent_default
51+
stop
52+
prevent
5353
end
5454

55+
# to be removed?
56+
alias default_prevented? prevented?
57+
alias prevent_default prevent
58+
alias propagation_stopped? stopped?
59+
alias stop_propagation stop
60+
alias stop_immediate_propagation stop_immediate
61+
5562
##
5663
# Keyboard/Mouse/Touch
5764

0 commit comments

Comments
 (0)
Please sign in to comment.