Old: v1.4.18 - 2015-01-25 - added 8muses.com, handled edge case that loaded nonexistent images
New: v1.4.19 - 2015-01-26 - fixed issue where reloading image that failed to load pushed it to the bottom of the page
- @@ -1,7 +1,7 @@
- // ==UserScript==
- // @name Manga Loader
- // @namespace http://www.fuzetsu.com/MangaLoader
-// @version 1.4.18
- +// @version 1.4.19
- // @description Loads manga chapter into one page in a long strip format, supports switching chapters and works for a variety of sites, minimal script with no dependencies, easy to implement new sites
- // @copyright 2014+, fuzetsu
- // @noframes
- @@ -690,9 +690,9 @@
- image.title = 'Reload?';
- image.src = '//rgeorgeeb-tilebuttongenerator.googlecode.com/hg-history/c35993682c2d50149976fd7a1f302f8c01a88716/asset-studio/src/res/clipart/icons/refresh.svg';
- image.onclick = function() {
- image.remove();
- counter.remove();
- addImage(src, loc, imgNum, callback);
- + image.onload = callback;
- + image.title = '';
- + image.src = src;
- };
- };
- image.onload = callback;