我的app.js
// this sets the background color of the master UIView (when there are no windows/tab groups on it)
Titanium.UI.setBackgroundColor('#000');
// create tab group
var tabGroup = Titanium.UI.createTabGroup();
//
// create base UI tab and root window
//
var homeWindow = Titanium.UI.cr
我正在写一个小的扩展,让我可以很容易地提交链接到编辑。这个扩展添加了一个新的上下文菜单('Submit Page')。如果用户右键单击并选择此菜单,则会在另一个选项卡中打开www.redddit.com/submit页面,并从菜单触发处提交该页面。
我添加了上下文菜单:
contextMenu.js
// Setup where the menu is presents;
// A list of [context, context menu text, id]
var redditURL = 'http://www.reddit.com/submit';
va