Skip to content

Instantly share code, notes, and snippets.

@EricM81
Last active December 23, 2015 18:09
Show Gist options
  • Save EricM81/6674066 to your computer and use it in GitHub Desktop.
Save EricM81/6674066 to your computer and use it in GitHub Desktop.
function page( pager, target ) {
...
//<edit by eric marvets
var nextSlideObj = opts.slides[nextSlide];
var src = nextSlideObj.attributes["src"]
if (src.value.toLowerCase().indexOf("tiniest.gif") >= 0) {
var dataSrc = nextSlideObj.attributes["data-src"];
var src = nextSlideObj.attributes["src"]
nextSlideObj.attributes.removeNamedItem("data-src");
src.textContent = dataSrc.textContent;
}
//</edit>
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment