[Pkg-mozext-commits] [nostalgy] 112/252: *** empty log message ***

David Prévot taffit at moszumanska.debian.org
Tue Jun 14 15:24:47 UTC 2016


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository nostalgy.

commit dd4783b78886782c082faf62458cf93ef8e3891e
Author: frisch <frisch at 56b81dcf-5a2f-0410-9db0-014be2e416ff>
Date:   Sun Jun 3 20:56:52 2007 +0000

    *** empty log message ***
---
 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