File tree 2 files changed +17
-7
lines changed
2 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
* Add ` Document.body ` and ` Document.head ` shortcut to element instances.
4
4
5
+ * Add ` Event ` methods: ` prevented? ` , ` prevent ` , ` stopped? ` and ` stop ` to
6
+ replace longer javascript names.
7
+
5
8
## 0.1.2 2013-12-01
6
9
7
10
* Support setting html content through ` Element#html() ` .
Original file line number Diff line number Diff line change @@ -26,32 +26,39 @@ def target
26
26
##
27
27
# Propagation
28
28
29
- def default_prevented ?
29
+ def prevented ?
30
30
`#@native .isDefaultPrevented()`
31
31
end
32
32
33
- def prevent_default
33
+ def prevent
34
34
`#@native .preventDefault()`
35
35
end
36
36
37
- def propagation_stopped ?
37
+ def stopped ?
38
38
`#@native .propagationStopped()`
39
39
end
40
40
41
- def stop_propagation
41
+ def stop
42
42
`#@native .stopPropagation()`
43
43
end
44
44
45
- def stop_immediate_propagation
45
+ def stop_immediate
46
46
`#@native .stopImmediatePropagation()`
47
47
end
48
48
49
49
# Stops propagation and prevents default action.
50
50
def kill
51
- stop_propagation
52
- prevent_default
51
+ stop
52
+ prevent
53
53
end
54
54
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
+
55
62
##
56
63
# Keyboard/Mouse/Touch
57
64
You can’t perform that action at this time.
0 commit comments