|
@@ -15,7 +15,7 @@
|
|
var originalDisplay = event.target.style.display;
|
|
var originalDisplay = event.target.style.display;
|
|
|
|
|
|
// Get the bounding rect of the contents, not the containing box
|
|
// Get the bounding rect of the contents, not the containing box
|
|
- if (window.getComputedStyle(event.target).display === 'block') {
|
|
|
|
|
|
+ if( window.getComputedStyle( event.target ).display === 'block' ) {
|
|
event.target.style.display = 'inline-block';
|
|
event.target.style.display = 'inline-block';
|
|
bounds = event.target.getBoundingClientRect();
|
|
bounds = event.target.getBoundingClientRect();
|
|
event.target.style.display = originalDisplay;
|
|
event.target.style.display = originalDisplay;
|