[Pkg-mozext-commits] [nostalgy] 95/235: *** empty log message ***
David Prévot
taffit at alioth.debian.org
Tue Oct 8 20:41:52 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 500e71ff2d46cf3f1d8fcc880415168ab8b06158
Author: frisch <frisch at 56b81dcf-5a2f-0410-9db0-014be2e416ff>
Date: Wed May 30 05:44:17 2007 +0000
*** empty log message ***
git-svn-id: http://nostalgy.googlecode.com/svn/trunk@95 56b81dcf-5a2f-0410-9db0-014be2e416ff
---
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