From aade7b98044ad4abb9021452688ec3af57f36acb Mon Sep 17 00:00:00 2001 From: thomascube Date: Sun, 6 Aug 2006 15:55:11 +0000 Subject: Finalized 0.1beta2 release --- program/js/app.js | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'program/js') diff --git a/program/js/app.js b/program/js/app.js index 83a50a0e9..f8c5aaf54 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -878,8 +878,9 @@ function rcube_webmail() if (this.task=='mail' && this.env.mailbox==this.env.drafts_mailbox) { - var uid = this.get_single_uid(); - url += '&_draft_uid='+uid+'&_mbox='+escape(this.env.mailbox); + var uid; + if (uid = this.get_single_uid()) + url += '&_draft_uid='+uid+'&_mbox='+escape(this.env.mailbox); } // modify url if we're in addressbook else if (this.task=='addressbook') @@ -2185,6 +2186,8 @@ function rcube_webmail() if (!this.gui_objects.attachmentlist) return false; + alert(content); + var li = document.createElement('LI'); li.id = name; li.innerHTML = content; @@ -3598,6 +3601,12 @@ function rcube_webmail() // send periodic request to check for recent messages this.check_for_recent = function() { + if (this.busy) + { + this.send_keep_alive(); + return; + } + this.set_busy(true, 'checkingmail'); var d = new Date(); this.http_request('check-recent', '_t='+d.getTime()); -- cgit v1.2.3