Skip to content

Commit 8144d58

Browse files
committedFeb 2, 2014
dom/element: fix #id=
1 parent 7fd893a commit 8144d58

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎opal/browser/dom/element.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,9 @@ def id
223223
}
224224
end
225225

226-
alias_native :id=
226+
def id=(value)
227+
`#@native.id = #{value.to_s}`
228+
end
227229

228230
def inner_dom(&block)
229231
# FIXME: when block passing is fixed

0 commit comments

Comments
 (0)
Please sign in to comment.