sort wallet list and fix display for unnamed wallets
This commit is contained in:
parent
926bb953bd
commit
c2fb4217ce
2 changed files with 8 additions and 2 deletions
|
|
@ -73,7 +73,8 @@ Storage.prototype._write = function(k,v) {
|
|||
|
||||
// get value by key
|
||||
Storage.prototype.getGlobal = function(k) {
|
||||
return localStorage.getItem(k);
|
||||
var item = localStorage.getItem(k);
|
||||
return item == 'undefined' ? undefined : item;
|
||||
};
|
||||
|
||||
// set value for key
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue