Skip to content

Commit

Permalink
Renew code for Thunderbird 52+
Browse files Browse the repository at this point in the history
  • Loading branch information
kewisch committed Dec 22, 2017
1 parent ec4e944 commit d3aa61a
Show file tree
Hide file tree
Showing 6 changed files with 73 additions and 579 deletions.
3 changes: 0 additions & 3 deletions chrome.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@ resource quickmove .

overlay chrome://messenger/content/messenger.xul chrome://quickmove/content/quickmove-overlay.xul
overlay chrome://messenger/content/messageWindow.xul chrome://quickmove/content/quickmove-overlay.xul

overlay chrome://messenger/content/messenger.xul chrome://quickmove/content/quickmove-postbox.xul [email protected]
overlay chrome://messenger/content/messageWindow.xul chrome://quickmove/content/quickmove-postbox.xul [email protected]
18 changes: 9 additions & 9 deletions chrome/content/quickmove-overlay.xul
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
insertbefore="mailContext-fileHereMenu"
onpopupshowing="quickmove.popupshowing(event)"
onpopupshown="quickmove.popupshown(event)"
oncommand="quickmove.executeMove(event.target._folder); event.stopPropagation()">
oncommand="quickmove.command(event, quickmove.executeMove)">
<textbox class="quickmove-textbox"
type="search"
timeout="500"
Expand All @@ -35,7 +35,7 @@
insertbefore="mailContext-copyHereMenu"
onpopupshowing="quickmove.popupshowing(event)"
onpopupshown="quickmove.popupshown(event)"
oncommand="quickmove.executeCopy(event.target._folder); event.stopPropagation()">
oncommand="quickmove.command(event, quickmove.executeCopy)">
<textbox id="quickmove-copy-textbox"
type="search"
timeout="500"
Expand Down Expand Up @@ -68,7 +68,7 @@
ignorekeys="true"
onpopupshowing="quickmove.popupshowing(event)"
onpopupshown="quickmove.popupshown(event)"
oncommand="quickmove.executeMove(event.target._folder)">
oncommand="quickmove.command(event, quickmove.executeMove)">
<textbox class="quickmove-textbox"
type="search"
timeout="500"
Expand All @@ -81,7 +81,7 @@
ignorekeys="true"
onpopupshowing="quickmove.popupshowing(event)"
onpopupshown="quickmove.popupshown(event)"
oncommand="quickmove.executeGoto(event.target._folder)">
oncommand="quickmove.command(event, quickmove.executeGoto)">
<textbox class="quickmove-textbox"
type="search"
timeout="500"
Expand All @@ -94,12 +94,12 @@
ignorekeys="true"
onpopupshowing="quickmove.popupshowing(event)"
onpopupshown="quickmove.popupshown(event)"
oncommand="quickmove.executeCopy(event.target._folder)">
oncommand="quickmove.command(event, quickmove.executeCopy)">
<textbox class="quickmove-textbox"
type="search"
timeout="500"
onfocus="quickmove.focus(event)"
onkeypress="quickmove.keypress(event, quickmove.executeGoto)"
onkeypress="quickmove.keypress(event, quickmove.executeCopy)"
oncommand="quickmove.search(event.target); event.stopPropagation();"/>
<menuseparator id="quickmove-copy-separator" class="quickmove-separator"/>
</menupopup>
Expand All @@ -110,7 +110,7 @@
ignorekeys="true"
onpopupshowing="quickmove.popupshowing(event)"
onpopupshown="quickmove.popupshown(event)"
oncommand="quickmove.executeMove(event.target._folder)">
oncommand="quickmove.command(event, quickmove.executeMove)">
<textbox class="quickmove-textbox"
type="search"
timeout="500"
Expand All @@ -123,7 +123,7 @@
ignorekeys="true"
onpopupshowing="quickmove.popupshowing(event)"
onpopupshown="quickmove.popupshown(event)"
oncommand="quickmove.executeCopy(event.target._folder)">
oncommand="quickmove.command(event, quickmove.executeCopy)">
<textbox class="quickmove-textbox"
type="search"
timeout="500"
Expand All @@ -141,7 +141,7 @@
ignorekeys="true"
onpopupshowing="quickmove.popupshowing(event)"
onpopupshown="quickmove.popupshown(event)"
oncommand="quickmove.executeGoto(event.target._folder)">
oncommand="quickmove.command(event, quickmove.executeGoto)">
<textbox class="quickmove-textbox"
type="search"
timeout="500"
Expand Down
98 changes: 0 additions & 98 deletions chrome/content/quickmove-postbox.xul

This file was deleted.

Loading

0 comments on commit d3aa61a

Please sign in to comment.