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
{{ message }}
This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
When using display: flex on the container for the list, and flex-direction: row-reverse or column-reverse, the placeholders are showing up in odd places.
This line only takes into account LTR.
var isFirstHalf = event.clientX < rect.left + rect.width / 2;
If there is a way to check if the parent is using flex, and flex-direction is set to something in the reverse, this statement would need to be ternary.
When using
display: flex
on the container for the list, andflex-direction: row-reverse
orcolumn-reverse
, the placeholders are showing up in odd places.This line only takes into account LTR.
var isFirstHalf = event.clientX < rect.left + rect.width / 2;
If there is a way to check if the parent is using flex, and flex-direction is set to something in the reverse, this statement would need to be ternary.
As an example I tried this with a simple CodePen, no angular, just jquery, html, css.
https://codepen.io/justincolangelo/pen/oyZEBK
The text was updated successfully, but these errors were encountered: