mirror of
https://github.com/MatMoul/quickdial-webext.git
synced 2025-04-04 12:31:45 +00:00
Bug: Add to Quick Dial menu is missing
This commit is contained in:
parent
245d70a6eb
commit
325fdc8c83
@ -10,6 +10,7 @@ app.init = function(){ // Init module
|
|||||||
app.GridNodes.sync(app.node, app.settings.grid.root, function(){
|
app.GridNodes.sync(app.node, app.settings.grid.root, function(){
|
||||||
browser.runtime.sendMessage({ cmd: app.Messages.Commands.gridNodesLoaded });
|
browser.runtime.sendMessage({ cmd: app.Messages.Commands.gridNodesLoaded });
|
||||||
app.Bookmarks.initListener();
|
app.Bookmarks.initListener();
|
||||||
|
app.ContextMenus.initMenu();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
@ -188,11 +189,13 @@ app.ContextMenus.initMenu = function(){ // (Called from app.init) Init context m
|
|||||||
id: 'AddToQuickDial',
|
id: 'AddToQuickDial',
|
||||||
title: browser.i18n.getMessage("menuAddToQuickDial"),
|
title: browser.i18n.getMessage("menuAddToQuickDial"),
|
||||||
contexts: ["all"],
|
contexts: ["all"],
|
||||||
documentUrlPatterns: [ 'http://*/*', 'https://*/*', 'file://*/*' ]
|
documentUrlPatterns: [ 'http://*/*', 'https://*/*', 'file://*/*', 'ftp://*/*' ]
|
||||||
}, function(){});
|
}, function(){});
|
||||||
browser.contextMenus.onClicked.addListener(function(info, tab) { // Context menu click event
|
browser.contextMenus.onClicked.addListener(function(info, tab) { // Context menu click event
|
||||||
//if (info.menuItemId == "AddToQuickDial")
|
if (info.menuItemId == "AddToQuickDial")
|
||||||
//app.GridNodes.createBookmark(app.settings.grid.node, info.pageUrl, tab.title, function(){});
|
app.GridNodes.createBookmark(app.node, info.pageUrl, tab.title, function(){
|
||||||
|
browser.runtime.sendMessage( { cmd: app.Messages.Commands.gridNodesLoaded } );
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user