Skip to content

Instantly share code, notes, and snippets.

@twxxk
Created January 9, 2015 15:09
Show Gist options
  • Save twxxk/bd17e67331a2764eada6 to your computer and use it in GitHub Desktop.
Save twxxk/bd17e67331a2764eada6 to your computer and use it in GitHub Desktop.
^https?://.*\.salesforce\.com/
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