main.js
我的Firefox 插件中有一个文件,它需要一个在另一个文件中定义的类,然后添加一个工具栏项。
// lib/main.js
var widgets = require('widgets'),
disabler = require('./disabler');
var toolbarOptions = {
id: 'the-id',
label: 'The Widget',
contentURL: self.data.url('icon-16.png')
};
// Add the toolbar item to the browser. Because this is a CommonJS environment,
// this reference to the toolbar is locally scoped.
var toolbar = widgets.Widget(toolbarOptions);
我想做的是contentURL
从disabler
文件中更改工具栏的。但是,我无权访问toolbar
该文件中的变量。
我怎样才能访问toolbar
from disabler
?
顺便说一句,我使用的是 1.10 版的附加 SDK。