You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
558 B
28 lines
558 B
'use strict'; |
|
|
|
exports.type = 'perItem'; |
|
|
|
exports.active = false; |
|
|
|
exports.description = 'removes raster images (disabled by default)'; |
|
|
|
/** |
|
* Remove raster images references in <image>. |
|
* |
|
* @see https://bugs.webkit.org/show_bug.cgi?id=63548 |
|
* |
|
* @param {Object} item current iteration item |
|
* @return {Boolean} if false, item will be filtered out |
|
* |
|
* @author Kir Belevich |
|
*/ |
|
exports.fn = function(item) { |
|
|
|
if ( |
|
item.isElem('image') && |
|
item.hasAttrLocal('href', /(\.|image\/)(jpg|png|gif)/) |
|
) { |
|
return false; |
|
} |
|
|
|
};
|
|
|