1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-22 17:45:46 +01:00

Fix :echo undefined

This commit is contained in:
Kris Maglione
2008-12-11 15:22:01 -05:00
parent 016770bf7d
commit 0f330b3a15
4 changed files with 26 additions and 22 deletions

View File

@@ -663,14 +663,16 @@ function Tabs() //{{{
return store.options;
},
get localStore()
getLocalStore: function (tab)
{
let tab = this.getTab();
let tab = this.getTab(tab);
if (!tab.liberatorStore)
tab.liberatorStore = {};
return tab.liberatorStore;
},
get localStore() this.getLocalStore(),
get tabStrip()
{
if (config.hostApplication == "Firefox")