You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I came on a bug that only occurs en chrome desktop mode, brave is ok, emulation mobile is ok too...
Here is the line on the dist file that needs to be corrected : 481 var expanded = parseInt(element.getBoundingClientRect().height) <= element.readmore.collapsedHeight;
parseInt fix the issue. Else the value returned by this function is not equal or less to collapsedHeight (240.000001453 > 240).
Hope it helps.
The text was updated successfully, but these errors were encountered:
I came on a bug that only occurs en chrome desktop mode, brave is ok, emulation mobile is ok too...
Here is the line on the dist file that needs to be corrected :
481 var expanded = parseInt(element.getBoundingClientRect().height) <= element.readmore.collapsedHeight;
parseInt fix the issue. Else the value returned by this function is not equal or less to collapsedHeight (240.000001453 > 240).
Hope it helps.
The text was updated successfully, but these errors were encountered: