Merge branch 'v3'

Conflicts:
	builds/appchan-x.user.js
	builds/crx/script.js
This commit is contained in:
Zixaphir 2014-05-03 16:48:36 -07:00
commit 0f5365263d
3 changed files with 7 additions and 3 deletions

View File

@ -11365,7 +11365,9 @@
var enabled;
enabled = Conf['prefetch'] = this.checked;
if (enabled) {
g.BOARD.posts.forEach(ImageLoader.node.call);
g.BOARD.posts.forEach(function(post) {
return ImageLoader.node.call(post);
});
}
}
};

View File

@ -11380,7 +11380,9 @@
var enabled;
enabled = Conf['prefetch'] = this.checked;
if (enabled) {
g.BOARD.posts.forEach(ImageLoader.node.call);
g.BOARD.posts.forEach(function(post) {
return ImageLoader.node.call(post);
});
}
}
};

View File

@ -64,5 +64,5 @@ ImageLoader =
toggle: ->
enabled = Conf['prefetch'] = @checked
if enabled
g.BOARD.posts.forEach ImageLoader.node.call
g.BOARD.posts.forEach (post) -> ImageLoader.node.call post
return