Created
June 13, 2017 12:18
-
-
Save bcruddy/99993c9d41487a3acc3d7dd3fe248d26 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const rows = document.querySelectorAll('.ui-grid-row'); | |
for (let i = 0; i < rows.length; i++) { | |
const zIndex = rows.length - i; | |
const row = rows[i] | |
row.style.zIndex = zIndex; | |
row.style.position = 'relative'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment