Hah, I can't believe that worked.

This commit is contained in:
Zixaphir 2014-04-08 14:47:50 -07:00
parent b00390b980
commit bc9ce0a434
3 changed files with 3 additions and 6 deletions

View File

@ -8007,8 +8007,7 @@
}
return g.posts.forEach(function(post) {
var _i, _len, _ref;
toggle(post);
_ref = post.clones;
_ref = [post].concat(__slice.call(post.clones));
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
post = _ref[_i];
toggle(post);

View File

@ -8046,8 +8046,7 @@
}
return g.posts.forEach(function(post) {
var _i, _len, _ref;
toggle(post);
_ref = post.clones;
_ref = [post].concat(__slice.call(post.clones));
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
post = _ref[_i];
toggle(post);

View File

@ -61,8 +61,7 @@ ImageExpand =
func = ImageExpand.contract
g.posts.forEach (post) ->
toggle post
toggle post for post in post.clones
toggle post for post in [post, post.clones...]
return
setFitness: ->