This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* | |
*/ | |
function doIEHack() { | |
var $fixNodes = $('.pngfix'); | |
// appy filter for all image elements with a 'pngfix' class being attached | |
$fixNodes.filter('img').each(function() { | |
applyFilterOnNode($(this)); | |
}); |