Skip to content

Commit

Permalink
Weird assignment fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nazar-pc committed Nov 5, 2015
1 parent b137fe7 commit 9e6f77a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/style-extends.html
Expand Up @@ -67,7 +67,7 @@
if (target.parent !== source.parent) {
this._cloneAndAddRuleToParent(source, target.parent);
}
target.extends = target.extends || (target.extends = []);
target.extends = target.extends || [];
target.extends.push(source);
// TODO: this misses `%foo, .bar` as an unetended selector but
// this seems rare and could possibly be unsupported.
Expand Down

0 comments on commit 9e6f77a

Please sign in to comment.