happo 2.7.0 → 2.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/happo/public/happo-runner.js +3 -1
- data/lib/happo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 75596225d55dc7884b6c3554deb8cde505363bdc
|
|
4
|
+
data.tar.gz: e74f833fe32f7c47fe6d7159577182ce9fed74bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1aab193cbdd1613179a5e2eb419886908678329ded450de3519cefee347823d9f7a69f15ae66952fd0572a044f79d5d65083500a1bdcdab2143687a93bd9515a
|
|
7
|
+
data.tar.gz: 12f443f6b378f0f9ffce390f83119025836db0968362159f966ba0a5d2b178d92457db1090670175ebd5197bbc7047cf0be7710eee8d07c23d4e8d952da5b40b
|
|
@@ -120,7 +120,9 @@ window.happo = {
|
|
|
120
120
|
|
|
121
121
|
// Clear out the body of the document
|
|
122
122
|
while (document.body.firstChild) {
|
|
123
|
-
|
|
123
|
+
if (document.body.firstChild instanceof Element) {
|
|
124
|
+
this.cleanOutElement(document.body.firstChild);
|
|
125
|
+
}
|
|
124
126
|
document.body.removeChild(document.body.firstChild);
|
|
125
127
|
}
|
|
126
128
|
|
data/lib/happo/version.rb
CHANGED