Sha256: 433bfa9e5e13220de55de032622f7840580f0499f4cb83907755d779482b643a
Contents?: true
Size: 452 Bytes
Versions: 44
Compression:
Stored size: 452 Bytes
Contents
/* global UrlBuilder */ jQuery(function() { var body = jQuery('body'); body.on('contentloaded', function(e) { jQuery(e.target).find('.pagination select[name="page"]').on('change', function() { var val = jQuery(this).val(); if (val) { var url = new UrlBuilder().add({page: val}).getUrl(); window.location.href = url; } }); }); });
Version data entries
44 entries across 44 versions & 1 rubygems