This commit is contained in:
Azgaar 2019-09-10 02:44:34 +03:00
parent c0a634bec1
commit 5a1b747da8
11 changed files with 182 additions and 51 deletions

View file

@ -671,6 +671,12 @@ function parseLoadedData(data) {
// labels should be toggled via style attribute, so remove display attribute
labels.attr("display", null);
// v 1.0 added religions heirarchy tree
pack.religions.forEach(r => {
r.origin = 0;
r.code = r.name.slice(0, 2);
});
}
}()