boomack 0.15.9 → 0.15.10
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.
- package/client/public/js/client.js +3 -11
- package/package.json +1 -1
|
@@ -199,17 +199,9 @@ window.boomack = window.boomack || {};
|
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
function getElementSize(e) {
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
width: Math.round(rect.width),
|
|
206
|
-
height: Math.round(rect.height)
|
|
207
|
-
}
|
|
208
|
-
} else {
|
|
209
|
-
return {
|
|
210
|
-
width: e.offsetWidth,
|
|
211
|
-
height: e.offsetHeight
|
|
212
|
-
}
|
|
202
|
+
return {
|
|
203
|
+
width: e.offsetWidth,
|
|
204
|
+
height: e.offsetHeight
|
|
213
205
|
}
|
|
214
206
|
}
|
|
215
207
|
|