forked from 0x2620/pandora
dont use undefine variable
This commit is contained in:
parent
8d4c790446
commit
377acbb7eb
1 changed files with 2 additions and 2 deletions
|
@ -1496,8 +1496,8 @@ pandora.getSpan = function(state, val, callback) {
|
|||
state.span = id;
|
||||
state.view = 'calendar';
|
||||
} else if (canBePlace && isName) {
|
||||
Ox.Log('URL', 'setting place id', '@' + str)
|
||||
state.span = '@' + str;
|
||||
Ox.Log('URL', 'setting place id', '@' + val)
|
||||
state.span = '@' + val;
|
||||
state.view = 'map';
|
||||
}
|
||||
callback();
|
||||
|
|
Loading…
Reference in a new issue