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

David Prévot taffit at moszumanska.debian.org
Tue Jun 14 15:24:45 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 6d459dec5adaa50ffc19ee44ed8a6787169c2343
Author: frisch <frisch at 56b81dcf-5a2f-0410-9db0-014be2e416ff>
Date:   Wed May 30 05:44:17 2007 +0000

    *** empty log message ***
---
 content/nostalgy.js | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/content/nostalgy.js b/content/nostalgy.js
index feb0f2d..618b6ae 100644
--- a/content/nostalgy.js
+++ b/content/nostalgy.js
@@ -361,7 +361,8 @@ function NostalgyDefLabel() {
 
 function NostalgyCollapseFolderPane() {
  var fp = gEBI("folderPaneBox");
- if (fp) fp.collapsed = !fp.collapsed;
+ if (fp) { fp.collapsed = !fp.collapsed; return true; }
+ else return false;
 }
 
 
@@ -384,6 +385,7 @@ function NostalgyCmd(lab,cmd,require_file) {
  }, 0);
    // For some unknown reason, doing nostalgyBox.focus immediatly
    // sometimes does not work...
+ return true;
 }
 
 
@@ -601,6 +603,7 @@ function NostalgyCopyToFolder(folder) {
 
 function NostalgySuggested(cmd) {
   if (gsuggest_folder) cmd(gsuggest_folder);
+  return true;
 }
 
 
@@ -676,7 +679,7 @@ var last_cycle_restrict_value = null;
 var last_cycle_restrict = 0;
 
 function NostalgySearchSender() {
-  if (!window.GetSearchInput) return;
+  if (!window.GetSearchInput) return false;
   var input = GetSearchInput();
   try {
   var recips = gDBView.msgFolder.displayRecipients;
@@ -703,6 +706,7 @@ function NostalgySearchSender() {
    last_cycle_restrict = 0; input.value = "";  onEnterInSearchBar();
    SetFocusThreadPane();
   }
+  return true;
 }
 
 function NostalgySearchSelectAll(select) {
@@ -827,12 +831,16 @@ function ParseCommand(k) {
 }
 
 function NostalgyGoCommand() {
-  if (!in_message_window) 
+  if (!in_message_window)  {
     NostalgyCmd('Go to folder:', NostalgyShowFolder, false);
+    return true;
+  } else return false;
 }
 function NostalgyGoSuggestedCommand() {
-  if (!in_message_window) 
+  if (!in_message_window)  {
     NostalgySuggested(NostalgyShowFolder);
+    return true;
+  } else return false;
 }
 
 window.addEventListener("load", onNostalgyLoad, false);

-- 
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