Skip to content

Commit dc146cd

Browse files
committedFeb 6, 2014
support: fix Attr.isId check
1 parent cba801a commit dc146cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎opal/browser/support.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ def self.supports?(feature)
103103

104104
when 'Attr.isId'
105105
%x{
106-
var div = document.createElement('div')
106+
var div = document.createElement('div');
107107
div.setAttribute('id', 'xxxxxxxxxxxxx');
108108
109-
return typeof(div.attributes.item('id').isId) !== "undefined";
109+
return typeof(div.attributes['id'].isId) !== "undefined";
110110
}
111111

112112
when 'Element.addBehavior'

0 commit comments

Comments
 (0)