mirror of
https://github.com/InsanusMokrassar/MicroUtils.git
synced 2024-11-19 14:53:50 +00:00
add Element.isOverflow
This commit is contained in:
parent
3e749d75b7
commit
7412217b0c
@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
## 0.10.8
|
## 0.10.8
|
||||||
|
|
||||||
|
* `Common`
|
||||||
|
* Add `Element.isOverflow*` extension properties
|
||||||
|
|
||||||
## 0.10.7
|
## 0.10.7
|
||||||
|
|
||||||
* `Pagination`:
|
* `Pagination`:
|
||||||
|
@ -0,0 +1,12 @@
|
|||||||
|
package dev.inmo.micro_utils.common
|
||||||
|
|
||||||
|
import org.w3c.dom.Element
|
||||||
|
|
||||||
|
inline val Element.isOverflowWidth
|
||||||
|
get() = scrollWidth > clientWidth
|
||||||
|
|
||||||
|
inline val Element.isOverflowHeight
|
||||||
|
get() = scrollHeight > clientHeight
|
||||||
|
|
||||||
|
inline val Element.isOverflow
|
||||||
|
get() = isOverflowHeight || isOverflowWidth
|
Loading…
Reference in New Issue
Block a user