Skip to content

Commit

Permalink
Working now
Browse files Browse the repository at this point in the history
  • Loading branch information
nsimmonds committed Nov 6, 2012
1 parent d5405bf commit 85d9f01
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 1,553 deletions.
74 changes: 0 additions & 74 deletions build.xml

This file was deleted.

42 changes: 21 additions & 21 deletions mail.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,30 +52,30 @@ function clickHandleOWA() {

// create the context menu items

if (localStorage["gmail"] != "false") {
chrome.contextMenus.create({
"title" : "Send via Gmail",
"contexts" :["link"],
"onclick" : clickHandleGmail()
});
};
if (localStorage["gmail"] != "false") {
chrome.contextMenus.create({
"title" : "Send via Gmail",
"contexts" :["link"],
"onclick" : clickHandleGmail()
});
};


if (localStorage["yahoo"] != "false") {
chrome.contextMenus.create({
"title" : "Send via Yahoo!",
"contexts" : ["link"],
"onclick" : clickHandleYmail()
});
};
if (localStorage["yahoo"] != "false") {
chrome.contextMenus.create({
"title" : "Send via Yahoo!",
"contexts" : ["link"],
"onclick" : clickHandleYmail()
});
};

if (localStorage["live"] != "false") {
chrome.contextMenus.create({
"title" : "Send via Microsoft Live Mail",
"contexts" : ["link"],
"onclick" : clickHandleLmail()
});
};
if (localStorage["live"] != "false") {
chrome.contextMenus.create({
"title" : "Send via Microsoft Live Mail",
"contexts" : ["link"],
"onclick" : clickHandleLmail()
});
};

if (localStorage["owa"] != "false") {
chrome.contextMenus.create({
Expand Down
Loading

0 comments on commit 85d9f01

Please sign in to comment.