tablesorter/js/parsers/parser-image.js

21 lines
436 B
JavaScript
Raw Normal View History

2014-07-11 19:59:57 +00:00
/*! image alt attribute parser for jQuery 1.7+ & tablesorter 2.7.11+
2014-07-17 17:40:11 +00:00
* New 7/17/2014 (v2.17.5)
2014-07-11 19:59:57 +00:00
*/
/*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);