We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f69ad6 commit c091d86Copy full SHA for c091d86
opal/browser/dom/event.rb
@@ -197,21 +197,11 @@ def initialize(event, callback = nil)
197
end
198
199
def name
200
- if @callback
201
- @callback.name
202
- else
203
- `#@native.type`
204
- end
+ `#@native.type`
205
206
207
def on
208
- return @on if @on
209
-
210
211
- @callback.target
212
213
- Target.convert(`#@native.currentTarget`)
214
+ @on || Target.convert(`#@native.currentTarget`)
215
216
217
def target
opal/browser/dom/event/base.rb
@@ -70,6 +70,11 @@ def call(e)
70
71
def to_proc
72
@proc ||= -> event {
73
+ %x{
74
+ event.currentTarget = self.target.native;
75
+ event.type = self.name;
76
+ }
77
+
78
event = Event.new(event, self)
79
80
unless event.stopped?
0 commit comments