[tuxdroid-svn] r5503 - software_suite_v3/smart-core/smart-server/trunk/data/web_interface/user_01/j
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-09-27 23:26:19
|
Author: remi
Date: 2009-09-28 01:25:49 +0200 (Mon, 28 Sep 2009)
New Revision: 5503
Modified:
software_suite_v3/smart-core/smart-server/trunk/data/web_interface/user_01/js/common.js
Log:
* Fixed thumbnail images quality on IE7 and IE8
Modified: software_suite_v3/smart-core/smart-server/trunk/data/web_interface/user_01/js/common.js
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/data/web_interface/user_01/js/common.js 2009-09-27 23:25:08 UTC (rev 5502)
+++ software_suite_v3/smart-core/smart-server/trunk/data/web_interface/user_01/js/common.js 2009-09-27 23:25:49 UTC (rev 5503)
@@ -11,7 +11,7 @@
*/
function setpng(img)
{
- if (document.all && (IEver=parseFloat(navigator.appVersion.split("MSIE")[1])) && (IEver>=5.5) && (IEver<7) && document.body.filters && img)
+ if (document.all && (IEver=parseFloat(navigator.appVersion.split("MSIE")[1])) && (IEver>=5.5) && (IEver<=8) && document.body.filters && img)
{
var imgName = img.src.toUpperCase();
if (imgName.substring(imgName.length-3,imgName.length) == "PNG")
|