1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 22:58:07 +02:00

Using !== for objects comparison

This commit is contained in:
notmasteryet 2011-09-23 06:58:54 -05:00
parent f3e4cf20cc
commit ba74e56c35

View file

@ -58,7 +58,7 @@ function cleanup() {
}
var guard = document.getElementById('content-end');
var body = document.body;
while (body.lastChild != guard)
while (body.lastChild !== guard)
body.removeChild(body.lastChild);
}