Sha256: 221b6fd2e86c7ac85de9d6b56500198cc518412d925751f606e52c6abc98eeed
Contents?: true
Size: 512 Bytes
Versions: 11
Compression:
Stored size: 512 Bytes
Contents
/*! Parser: image - new 7/17/2014 (v2.17.5) */ /* alt attribute parser for jQuery 1.7+ & tablesorter 2.7.11+ */ /* NOTE! Moved to jquery.tablesorter.js (core) in v2.18.0 */ /*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
11 entries across 11 versions & 1 rubygems