Created
December 16, 2011 03:46
-
-
Save wesgarrison/1484362 to your computer and use it in GitHub Desktop.
Bookmarklet to remove zero entry lines from Harvest uninvoiced report
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
| $$('tbody .btn-disabled').each( | |
| function(element,index) { | |
| element.up('tbody').hide() | |
| } | |
| ); | |
| $$('td.ur-name a.gray').each( | |
| function(element,index){ | |
| element.up('tr').hide() | |
| } | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment