aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorteramako2011-01-22 23:18:36 +0900
committerteramako2011-01-22 23:18:36 +0900
commit84093fd51b8bec20076c6c56df241cee2ed7b7d2 (patch)
tree98fedb4400812f91030cb4237ecb5e4af8fbbfb9
parent997d493569ac41b2f4ee2c4349404438677f5753 (diff)
downloadvimperator-plugins-84093fd51b8bec20076c6c56df241cee2ed7b7d2.tar.bz2
rename tabItem to _tabViewTabItem
see https://bugzilla.mozilla.org/show_bug.cgi?id=611715
-rw-r--r--panorama.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/panorama.js b/panorama.js
index aa6880f..aa1e793 100644
--- a/panorama.js
+++ b/panorama.js
@@ -2,7 +2,7 @@
* Use at your OWN RISK.
*/
let INFO = <>
-<plugin name="panorama" version="0.6.5"
+<plugin name="panorama" version="0.6.6"
href="https://github.com/vimpr/vimperator-plugins/blob/master/panorama.js"
summary="Add supports for Panorama"
lang="en-US"
@@ -846,8 +846,8 @@ completion.tabgroup = function TabGroupCompleter (context, excludeActiveGroup) {
url = getURLFromTab(tab),
index = (tab._tPos + 1) + ": ";
let item = createItem(index, label, url, indicator, tab.image);
- if (!tab.pinned && tab.tabItem && tab.tabItem.parent) {
- let groupName = tab.tabItem.parent.getTitle();
+ if (!tab.pinned && tab._tabViewTabItem && tab._tabViewTabItem.parent) {
+ let groupName = tab._tabViewTabItem.parent.getTitle();
if (groupName) {
let prefix = groupName + " " + (i + 1) + ": ";
item.text.push(prefix + label);