forked from 0x2620/pandora
fix URL controller
This commit is contained in:
parent
aa76e1d4a2
commit
5bfcf51a1f
1 changed files with 5 additions and 5 deletions
|
@ -78,11 +78,11 @@ pandora.URL = (function() {
|
|||
|
||||
} else {
|
||||
|
||||
var set = {
|
||||
section: state.type == pandora.site.itemsSection ? 'items' : state.type,
|
||||
page: ''
|
||||
};
|
||||
set[set.section.slice(0, -1)] = state.item;
|
||||
var set = {page: ''};
|
||||
if (state.type) {
|
||||
set.section = state.type == pandora.site.itemsSection ? 'items' : state.type
|
||||
set[set.section.slice(0, -1)] = state.item;
|
||||
}
|
||||
|
||||
if (set.section == 'items') {
|
||||
if (state.view) {
|
||||
|
|
Loading…
Reference in a new issue