| Issue 23: | mhtml: images to skip | |
| 2 people starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem?
.something{background:url(mhtml:http://...) in CSS
mhtml: images must be skipped. Right now they are not supported at all
(IE6/7 fails on creating Sprites from mhtml: images, but they are
recognized as Sprites properly).
Need to add somehting like this
if ( 0 == imageUrl.toLowerCase().indexOf("mhtml:")
) {
SpriteMe.dprint(5, "skipping mhtml:");
if ( !SpriteMe.bMhtmlWarning ) {
alert("Background images using
\"mhtml:\" URIs are not supported by SpriteMe.");
SpriteMe.bMhtmlWarning = true;
}
continue;
}
right after data:URI skipping (string 100...110 in spriteme.js)
Sep 21, 2009
Project Member
#1
stevesou...@gmail.com
Sep 21, 2009
webo.in ? :) |