diff options
author | thomascube <thomas@roundcube.net> | 2006-08-06 15:55:11 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-08-06 15:55:11 +0000 |
commit | aade7b98044ad4abb9021452688ec3af57f36acb (patch) | |
tree | 10e255b2eb423490fa70781897277849f5ffc6df /program/js | |
parent | 27a398c18aec787b836ef12066f20d55065045d3 (diff) |
Finalized 0.1beta2 releasev0.1-beta2
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 13 |
1 files changed, 11 insertions, 2 deletions
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()); |