forked from 0x2620/pandora
working around a bug where site.user.ui.lists is different from what it should be according to 0xdb.json
This commit is contained in:
parent
f8a0b2ef8b
commit
bd7e9bf3c9
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ Ox.load({
|
||||||
site: data.site,
|
site: data.site,
|
||||||
user: data.user.level == 'guest' ? Ox.clone(data.site.user) : data.user
|
user: data.user.level == 'guest' ? Ox.clone(data.site.user) : data.user
|
||||||
});
|
});
|
||||||
Ox.print("USER", data.user)
|
Ox.print("USER.UI.LISTS", data.user.ui.lists, "SITE.USER.UI.LISTS", data.site.user.ui.lists)
|
||||||
Ox.extend(pandora.site, {
|
Ox.extend(pandora.site, {
|
||||||
findKeys: Ox.map(data.site.itemKeys, function(key) {
|
findKeys: Ox.map(data.site.itemKeys, function(key) {
|
||||||
return key.find ? key : null;
|
return key.find ? key : null;
|
||||||
|
|
Loading…
Reference in a new issue