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

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott J. Miles committed Mar 24, 2014
1 parent 1a164af commit c76d2ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/declaration/queue.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
indexOf: function(element) {
var i = queueForElement(element).indexOf(element);
if (i >= 0 && document.contains(element)) {
i += (HTMLImports.useNative || HTMLImports.ready) ? importQueue.length :
1e9;
i += (HTMLImports.useNative || HTMLImports.ready) ?
importQueue.length : 1e9;
}
return i;
},
Expand All @@ -42,7 +42,7 @@
//console.warn('queue order wrong', i);
return;
}
return queueForElement(element).shift();
return queueForElement(element).shift();
},
check: function() {
// next
Expand Down

0 comments on commit c76d2ec

Please sign in to comment.