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.
@@ -199,17 +199,9 @@ window.boomack = window.boomack || {};
199
199
  }
200
200
 
201
201
  function getElementSize(e) {
202
- if (typeof e.getBoundingClientRect === 'function') {
203
- var rect = e.getBoundingClientRect();
204
- return {
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "boomack",
3
- "version": "0.15.9",
3
+ "version": "0.15.10",
4
4
  "description": "web app for displaying hyper-media items in concert with e.g. an IDE",
5
5
  "author": "Tobias Kiertscher <dev@mastersign.de>",
6
6
  "license": "MIT",