Skip to content
Snippets Groups Projects
Commit b85ff86c authored by lowercasedonkey's avatar lowercasedonkey
Browse files

sort order of data as it forms order of appearance at the moment

parent 41ebe818
No related branches found
No related tags found
1 merge request!8553move more data into shoes
...@@ -1158,17 +1158,17 @@ App.Data.shoes = new Map([ // TODO: add lift property ...@@ -1158,17 +1158,17 @@ App.Data.shoes = new Map([ // TODO: add lift property
platformHeight: 0 platformHeight: 0
} }
], ],
["heels", ["pumps",
{ {
name: "Heels", name: "Pumps",
heelHeight: 13, // 5 inch heels heelHeight: 5, // 2 inch heels
platformHeight: 0 platformHeight: 0
} }
], ],
["pumps", ["heels",
{ {
name: "Pumps", name: "Heels",
heelHeight: 5, // 2 inch heels heelHeight: 13, // 5 inch heels
platformHeight: 0 platformHeight: 0
} }
], ],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment