Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
fix typo in line 214 which was throwing on FF
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott J. Miles committed Jan 22, 2014
1 parent 71fed8a commit 99e7ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HTMLImports.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function whenImportsReady(callback, doc) {
})
return;
}
var imports = doc.querySelectorAll('link[rel=import');
var imports = doc.querySelectorAll('link[rel=import]');
var loaded = 0, l = imports.length;
function checkDone(d) {
if (loaded == l) {
Expand Down

0 comments on commit 99e7ac7

Please sign in to comment.