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.span = id;
|
||||||
state.view = 'calendar';
|
state.view = 'calendar';
|
||||||
} else if (canBePlace && isName) {
|
} else if (canBePlace && isName) {
|
||||||
Ox.Log('URL', 'setting place id', '@' + str)
|
Ox.Log('URL', 'setting place id', '@' + val)
|
||||||
state.span = '@' + str;
|
state.span = '@' + val;
|
||||||
state.view = 'map';
|
state.view = 'map';
|
||||||
}
|
}
|
||||||
callback();
|
callback();
|
||||||
|
|
Loading…
Reference in a new issue