Sha256: 8753b67ee341804db7f7a1d9cd032036d4c0b938c99e9f450c15c9f9d5bf7cac
Contents?: true
Size: 436 Bytes
Versions: 16
Compression:
Stored size: 436 Bytes
Contents
/*! image alt attribute parser for jQuery 1.7+ & tablesorter 2.7.11+ * New 7/17/2014 (v2.17.5) */ /*jshint jquery:true, unused:false */ ;(function($){ "use strict"; $.tablesorter.addParser({ id: "image", is: function(){ return false; }, format: function(s, table, cell) { return $(cell).find('img').attr(table.config.imgAttr || 'alt') || s; }, parsed : true, // filter widget flag type: "text" }); })(jQuery);
Version data entries
16 entries across 16 versions & 1 rubygems