Created
January 9, 2015 15:09
-
-
Save twxxk/bd17e67331a2764eada6 to your computer and use it in GitHub Desktop.
^https?://.*\.salesforce\.com/
This file contains 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
var $fewerMoreLink = $('.fewerMore a'); | |
if ($fewerMoreLink.size() == 2) { | |
var $more = $fewerMoreLink.eq(1); | |
var $much = $more.clone(); | |
var s = $much.attr('href'); | |
s = s.replace(/rowsperpage=\d+/g, 'rowsperpage=3500'); | |
$much.attr('href', s).text(' ▼much more'); | |
$more.after($much); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment