forked from 0x2620/pandora
fix UI controller
This commit is contained in:
parent
7475caee10
commit
0069fa3f74
1 changed files with 4 additions and 4 deletions
|
@ -164,11 +164,11 @@ pandora.UI = (function() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (args.edit) {
|
if (args.edit) {
|
||||||
add['edits.' + that.encode(args.edit)] = Ox.map(editSettings, function(value, key) {
|
Ox.forEach(editSettings, function(value, key) {
|
||||||
var editsKey = 'edits.' + that.encode(args.edit) + '.' + key;
|
var editsKey = 'edits.' + that.encode(args.edit) + '.' + key;
|
||||||
return editsKey in args ? args[editsKey]
|
add[editsKey] = editsKey in args ? args[editsKey]
|
||||||
: pandora.user.ui.edits[args.edit] ? pandora.user.ui.edits[args.edit][key]
|
: pandora.user.ui.edits[args.edit] ? pandora.user.ui.edits[args.edit][key]
|
||||||
: value;
|
: valuel
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (args.text) {
|
if (args.text) {
|
||||||
|
@ -187,7 +187,7 @@ pandora.UI = (function() {
|
||||||
editSort: 'sort',
|
editSort: 'sort',
|
||||||
editView: 'view'
|
editView: 'view'
|
||||||
}, function(editSetting, setting) {
|
}, function(editSetting, setting) {
|
||||||
var key = 'edits.' + that.encode(pandora.user.ui.edit) + '.' + editSetting;
|
var key = 'edits.' + that.encode(args.edit || pandora.user.ui.edit) + '.' + editSetting;
|
||||||
if (setting in args) {
|
if (setting in args) {
|
||||||
add[key] = args[setting];
|
add[key] = args[setting];
|
||||||
} else if (setting in add) {
|
} else if (setting in add) {
|
||||||
|
|
Loading…
Reference in a new issue