Created
June 9, 2017 07:35
-
-
Save gkucmierz/1ba24b400ad89d2c90107ceb72e58276 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
| // ing business login | |
| var pass = prompt().trim(); | |
| [].map.call(document.querySelector('.pass-holder').querySelectorAll('[type=password]'), (el, i) => { | |
| if ([].slice.call(el.classList).indexOf('logFieldInactive') === -1) { | |
| el.value = pass[i]; | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment