Skip to content

Commit

Permalink
Reorder.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Sep 22, 2016
1 parent 92d1d8a commit cbae058
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/annotations/annotations.html
Original file line number Diff line number Diff line change
Expand Up @@ -272,10 +272,10 @@

_replaceSlotWithContent: function(slot) {
var content = slot.ownerDocument.createElement('content');
var attrs = slot.attributes;
while (slot.firstChild) {
content.appendChild(slot.firstChild);
}
var attrs = slot.attributes;
for (var i=0; i<attrs.length; i++) {
var attr = attrs[i];
content.setAttribute(attr.name, attr.value);
Expand Down

0 comments on commit cbae058

Please sign in to comment.