diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-07-30 10:00:35 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-07-30 10:00:35 +0200 |
commit | cfc27c9b764985f707e8ca8d5ba663b6e4b01ecc (patch) | |
tree | 2766d44f459e908d576d4c99ec21d7335ea8f1c7 /program/js | |
parent | 71ee565dfc5b40bee5ed8f66d75b4ff9f78a3976 (diff) |
Keep some resource files (images) in separate directory
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/js/app.js b/program/js/app.js index b1f563cd5..46621055d 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -48,7 +48,7 @@ function rcube_webmail() this.env.request_timeout = 180; // seconds this.env.draft_autosave = 0; // seconds this.env.comm_path = './'; - this.env.blankpage = 'program/blank.gif'; + this.env.blankpage = 'program/resources/blank.gif'; // set jQuery ajax options $.ajaxSetup({ @@ -6210,7 +6210,7 @@ function rcube_webmail() // have to do it this way for IE // otherwise the form will be posted to a new window if (document.all) { - var html = '<iframe name="'+frame_name+'" src="program/blank.gif" style="width:0;height:0;visibility:hidden;"></iframe>'; + var html = '<iframe name="'+frame_name+'" src="program/resources/blank.gif" style="width:0;height:0;visibility:hidden;"></iframe>'; document.body.insertAdjacentHTML('BeforeEnd', html); } else { // for standards-compilant browsers @@ -6548,7 +6548,7 @@ function rcube_webmail() img.onload = function() { rcmail.env.browser_capabilities.tif = 1; }; img.onerror = function() { rcmail.env.browser_capabilities.tif = 0; }; - img.src = 'program/blank.tif'; + img.src = 'program/resources/blank.tif'; }; this.pdf_support_check = function() |