Hah, I can't believe that worked.
This commit is contained in:
parent
b00390b980
commit
bc9ce0a434
@ -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);
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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: ->
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user