Skip to content

Commit 1372a58

Browse files
committedJan 29, 2014
dom/element: catch errors coming up from Sizzle in #css
1 parent 721b1e9 commit 1372a58

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎opal/browser/dom/element.rb

+5-1
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,11 @@ def css(path)
244244
end
245245
elsif Browser.loaded? 'Sizzle'
246246
def css(path)
247-
NodeSet.new(document, `Sizzle(#{path}, #@native)`)
247+
begin
248+
NodeSet.new(document, `Sizzle(path, #@native)`)
249+
rescue
250+
NodeSet.new(document)
251+
end
248252
end
249253
else
250254
def css(selector)

0 commit comments

Comments
 (0)
Please sign in to comment.