Sha256: ab13f780e8485a171514eaad2d1da6fde3bd0db58e162555ffae77e9677d3234
Contents?: true
Size: 518 Bytes
Versions: 5
Compression:
Stored size: 518 Bytes
Contents
$(function() { // Check all the checkboxes when the head one is selected $(".checkall").live("click", function() { $("input[type='checkbox']").attr('checked', $(this).is(':checked')); }); // handle pagination through ajax $("#tabs-messages .pagination a").live("click", function(e) { $.getScript(this.href); history.pushState(null, document.title, this.href); e.preventDefault(); }); //bind window for postate $(window).bind("popstate", function() { $.getScript(location.href); }); });
Version data entries
5 entries across 5 versions & 2 rubygems