Last active
June 9, 2017 17:26
-
-
Save prendradjaja/a24721f58452673383619ac517f005a7 to your computer and use it in GitHub Desktop.
(in progress) "Sort bookmarks" bookmarklet for Medium
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
| // https://stackoverflow.com/questions/11778477/variable-in-chrome | |
| // https://developer.mozilla.org/en-US/docs/Web/API/Element/querySelector | |
| var homeStream = $('.js-homeStream'); | |
| var stories = homeStream.children; | |
| function getReadingTime (story) { | |
| return +$('.readingTime', story).title.split(' ')[0]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment