summaryrefslogtreecommitdiff
path: root/roundcubemail/program/js/app.js
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-05-18 10:25:29 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2010-05-18 10:25:29 +0000
commitb065ddd7ed6a888e3d34f138a766ffdfd55ecb4d (patch)
treef26c5a9b53edefa72cf7c13d1ba460b520d13f66 /roundcubemail/program/js/app.js
parent6fb230ba8217450733ef7f1aa69b9c0f855666d7 (diff)
- Some files from /bin + spellchecking actions moved to the new 'utils' task
git-svn-id: https://svn.roundcube.net/trunk@3627 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/app.js')
-rw-r--r--roundcubemail/program/js/app.js6
1 files changed, 2 insertions, 4 deletions
diff --git a/roundcubemail/program/js/app.js b/roundcubemail/program/js/app.js
index 253d8591d..dfd7c9f87 100644
--- a/roundcubemail/program/js/app.js
+++ b/roundcubemail/program/js/app.js
@@ -50,7 +50,6 @@ function rcube_webmail()
this.env.request_timeout = 180; // seconds
this.env.draft_autosave = 0; // seconds
this.env.comm_path = './';
- this.env.bin_path = './bin/';
this.env.blankpage = 'program/blank.gif';
// set jQuery ajax options
@@ -4825,8 +4824,7 @@ function rcube_webmail()
}
// replace quota image
- obj.innerHTML = '';
- $(obj).append(bar1).append(bar2).append(main);
+ $(obj).html('').append(bar1).append(bar2).append(main);
};
/********************************************************/
@@ -4836,7 +4834,7 @@ function rcube_webmail()
this.html2plain = function(htmlText, id)
{
var rcmail = this,
- url = this.env.bin_path + 'html2text.php';
+ url = '?_task=utils&_action=html2text';
this.set_busy(true, 'converting');
console.log('HTTP POST: ' + url);