This website works better with JavaScript.
Home
Explore
Help
Sign In
chemicalcrux
/
stroll
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
11
Wiki
Activity
Browse Source
Flattened containers are sorted by area
tags/v1.0.0
Fen Dweller
6 years ago
parent
4747e7723c
commit
29009537cf
1 changed files
with
2 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-0
recursive-macro.js
+ 2
- 0
recursive-macro.js
View File
@@ -501,6 +501,8 @@ function flatten(thing) {
list.push(obj);
});
list.sort(function(x,y) { return areas[x.name] < areas[y.name] })
return new Container(list);
}
Write
Preview
Loading…
Cancel
Save