[Pkg-mozext-commits] [nostalgy] 113/235: *** empty log message ***
David Prévot
taffit at alioth.debian.org
Tue Oct 8 20:41:57 UTC 2013
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository nostalgy.
commit 0dcd5ba45349c54a20ccdb2149ac6c6192da6022
Author: frisch <frisch at 56b81dcf-5a2f-0410-9db0-014be2e416ff>
Date: Sun Jun 3 20:56:52 2007 +0000
*** empty log message ***
git-svn-id: http://nostalgy.googlecode.com/svn/trunk@113 56b81dcf-5a2f-0410-9db0-014be2e416ff
---
content/nostalgy.js | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/content/nostalgy.js b/content/nostalgy.js
index ec4b18d..e74db92 100644
--- a/content/nostalgy.js
+++ b/content/nostalgy.js
@@ -283,7 +283,6 @@ function onNostalgyLoad() {
};
onSearchInputBlur = NostalgyLeaveSearch;
-
gEBI("quick-search-menupopup").addEventListener
("popupshowing",
function() {
@@ -441,8 +440,10 @@ function NostalgyRunCommand() {
}
function MailRecipients() {
- var hdr = gDBView.hdrForFirstSelectedMessage;
- return((hdr.recipients + ", " + hdr.ccList).toLowerCase());
+ try {
+ var hdr = gDBView.hdrForFirstSelectedMessage;
+ return((hdr.recipients + ", " + hdr.ccList).toLowerCase());
+ } catch (ex) { return ""; }
}
function MailAuthor() {
@@ -904,7 +905,16 @@ function NostalgySaveAndGoSuggested() {
return true;
}
+function onNostalgyKeyDown(ev) {
+// NostalgyDebug("keydown " + ev.keyCode);
+}
+function onNostalgyKeyUp(ev) {
+// NostalgyDebug("keyup " + ev.keyCode);
+}
+
window.addEventListener("load", onNostalgyLoad, false);
window.addEventListener("resize", onNostalgyResize, false);
window.addEventListener("unload", onNostalgyUnload, false);
window.addEventListener("keypress", onNostalgyKeyPress, true);
+window.addEventListener("keydown", onNostalgyKeyDown, true);
+window.addEventListener("keyup", onNostalgyKeyUp, true);
\ No newline at end of file
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/nostalgy.git
More information about the Pkg-mozext-commits
mailing list