Skip to content

Commit 918c84f

Browse files
committedFeb 8, 2014
component: improve inheritance deduction
1 parent 24ec395 commit 918c84f

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed
 

‎opal/lissio/component.rb

+10-8
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,17 @@ def self.inheritance
6262
next unless klass.ancestors.include?(Component)
6363
next unless klass.css
6464

65-
if klass.superclass != Component
66-
next if klass.element != klass.superclass.element
67-
next if klass.tag && !klass.superclass.tag
68-
69-
if a = klass.tag && b = klass.superclass.tag
70-
next if a[:class] != b[:class] || a[:id] != b[:id]
71-
end
65+
tag = klass.tag
66+
element = klass.element
67+
parent = klass.superclass
68+
69+
if parent != Component
70+
next if element != parent.element
71+
next if tag && !parent.tag
72+
next if tag && (tag[:class] != parent.tag[:class] || tag[:id] != parent.tag[:id])
7273
else
73-
next if klass.tag || klass.element
74+
next if element
75+
next if tag && (tag[:class] || tag[:id])
7476
end
7577

7678
if klass.name

0 commit comments

Comments
 (0)
Please sign in to comment.