happo 2.1.0 → 2.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/happo/public/happo-runner.js +2 -2
- 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: d2c89082277fba29525c09cd467d81980fb85e61
|
4
|
+
data.tar.gz: 13d72d47e69b1183719fd7636fc64b93f58c8396
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c9ae2ace18a3044f1e02675e1145237ff15cb01cb66de9f2e5d1b0a247b89523b2a3cb1c551e8de04677e0b867c2820f97e6087a2cd60adc8a25f158cc6500c9
|
7
|
+
data.tar.gz: 7970d125b89ea9ae8c883ceeee1a85cff01850ae0e6ff4a3880b8655dcbf2af86f7ab85659c7e89554e43882f7b42e45ce1000e0a05ab229df240b399b2ad624
|
@@ -163,7 +163,7 @@ window.happo = {
|
|
163
163
|
box.top = Math.min(box.top, rect.top);
|
164
164
|
|
165
165
|
for (var i = 0; i < node.children.length; i++) {
|
166
|
-
getFullRectRecursive(node.children[i], box);
|
166
|
+
this.getFullRectRecursive(node.children[i], box);
|
167
167
|
}
|
168
168
|
},
|
169
169
|
|
@@ -186,7 +186,7 @@ window.happo = {
|
|
186
186
|
// mutating our box object along the way to expand to include all descendent
|
187
187
|
// nodes.
|
188
188
|
for (var i = 0; i < node.children.length; i++) {
|
189
|
-
getFullRectRecursive(node.children[i], box);
|
189
|
+
this.getFullRectRecursive(node.children[i], box);
|
190
190
|
}
|
191
191
|
|
192
192
|
// Do width and height calculations at the end, to avoid having to do them
|
data/lib/happo/version.rb
CHANGED