Skip to content

Commit

Permalink
Typo fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
arantius committed Aug 30, 2012
1 parent b9a0713 commit 0bc425a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/addons4-overlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ function applySort() {
var list = document.getElementById('addon-list');
var elements = Array.slice(list.childNodes, 0);
sortElements(elements, sortBy, ascending);
while (list.listChild) list.removeChild(list.lastChild);
while (list.lastChild) list.removeChild(list.lastChild);
elements.forEach(function(el) { list.appendChild(el); });
};

Expand Down

0 comments on commit 0bc425a

Please sign in to comment.