diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-07-21 16:45:24 -0400 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-07-21 16:45:24 -0400 |
commit | 9667a0d19a34dd9ba8d553009b43ef668826215a (patch) | |
tree | 22f75b728342782acfdcd7ea716736a963ab2056 /common | |
parent | 5b895f0ef72a8436cf9809d01f06778e624ec788 (diff) | |
download | pentadactyl-9667a0d19a34dd9ba8d553009b43ef668826215a.tar.gz |
Remove last remnant of services.json.
Diffstat (limited to 'common')
-rw-r--r-- | common/content/tabs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/tabs.js b/common/content/tabs.js index 9ac9e3c5..998ca0a5 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -155,7 +155,7 @@ var Tabs = Module("tabs", { * @property {Object[]} The array of closed tabs for the current * session. */ - get closedTabs() services.json.decode(services.sessionStore.getClosedTabData(window)), + get closedTabs() JSON.parse(services.sessionStore.getClosedTabData(window)), /** * Clones the specified *tab* and append it to the tab list. |