Skip to content

Commit c091d86

Browse files
committedJan 27, 2014
dom/event: simplify .currentTarget and .type polyfills
1 parent 3f69ad6 commit c091d86

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed
 

‎opal/browser/dom/event.rb

+2-12
Original file line numberDiff line numberDiff line change
@@ -197,21 +197,11 @@ def initialize(event, callback = nil)
197197
end
198198

199199
def name
200-
if @callback
201-
@callback.name
202-
else
203-
`#@native.type`
204-
end
200+
`#@native.type`
205201
end
206202

207203
def on
208-
return @on if @on
209-
210-
if @callback
211-
@callback.target
212-
else
213-
Target.convert(`#@native.currentTarget`)
214-
end
204+
@on || Target.convert(`#@native.currentTarget`)
215205
end
216206

217207
def target

‎opal/browser/dom/event/base.rb

+5
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,11 @@ def call(e)
7070

7171
def to_proc
7272
@proc ||= -> event {
73+
%x{
74+
event.currentTarget = self.target.native;
75+
event.type = self.name;
76+
}
77+
7378
event = Event.new(event, self)
7479

7580
unless event.stopped?

0 commit comments

Comments
 (0)
Please sign in to comment.