Skip to content

Commit a4bd2f3

Browse files
committedFeb 2, 2014
dom/element: improve #inner_dom and add specs
1 parent 8144d58 commit a4bd2f3

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed
 

‎opal/browser/dom/element.rb

+6-2
Original file line numberDiff line numberDiff line change
@@ -228,15 +228,19 @@ def id=(value)
228228
end
229229

230230
def inner_dom(&block)
231+
clear
232+
231233
# FIXME: when block passing is fixed
232234
doc = document
233-
clear; Builder.new(doc, self, &block)
235+
Builder.new(doc, self, &block)
234236

235237
self
236238
end
237239

238240
def inner_dom=(node)
239-
clear; self << node
241+
clear
242+
243+
self << node
240244
end
241245

242246
def /(*paths)

‎spec/dom/element_spec.rb

+17
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,23 @@
6868
end
6969
end
7070

71+
describe '#inner_dom' do
72+
html <<-HTML
73+
<div id="lol">
74+
<div id="wut"></div>
75+
</div>
76+
HTML
77+
78+
it 'builds the DOM and inserts it' do
79+
$document["lol"].inner_dom {
80+
div.omg!
81+
}
82+
83+
expect($document["#lol #omg"]).to be_truthy
84+
expect($document["#lol #wut"]).to be_falsy
85+
end
86+
end
87+
7188
describe '#inspect' do
7289
it 'uses the node name' do
7390
el = $document.create_element('div')

0 commit comments

Comments
 (0)
Please sign in to comment.