“User:D41D8CD98F/common.js”的版本间的差异

来自萌娘共享
跳转至: 导航搜索
 
第2行: 第2行:
 
$('img[src*="//static.mengniang.org"]').one('error', function() {
 
$('img[src*="//static.mengniang.org"]').one('error', function() {
 
this.src = this.src.replace('//static.mengniang.org','//img.acg.moe');
 
this.src = this.src.replace('//static.mengniang.org','//img.acg.moe');
$('a').each(function() { this.href = this.href.replace('//static.mengniang.org','//img.acg.moe'})
+
$('a').each(function() { this.href = this.href.replace('//static.mengniang.org','//img.acg.moe') })
 
});
 
});
 
$('img').each(function() { this.src = this.src })
 
$('img').each(function() { this.src = this.src })
 
})();
 
})();

2018年8月6日 (一) 11:11的最新版本

(function() {
	$('img[src*="//static.mengniang.org"]').one('error', function() {
		this.src = this.src.replace('//static.mengniang.org','//img.acg.moe');
		$('a').each(function() { this.href = this.href.replace('//static.mengniang.org','//img.acg.moe') })
	});
	$('img').each(function() { this.src = this.src })
})();