aboutsummaryrefslogtreecommitdiffstats
path: root/template-common
diff options
context:
space:
mode:
authorvdigital <vdigital@piwigo.org>2008-07-06 20:55:57 +0000
committervdigital <vdigital@piwigo.org>2008-07-06 20:55:57 +0000
commit462453465b59675706e4bb305fc9a82977dbb5a9 (patch)
tree9c97d9e0647634300f6b3aa81f228865f5ff20e5 /template-common
parent03c2f3c8db54c8b3df8c344ac0ca7d7ffecac890 (diff)
Transparent .png for IE6 / Help icon fixed / Tabsheet fixed / and CSS review (still on going)
git-svn-id: http://piwigo.org/svn/trunk@2426 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template-common')
-rw-r--r--template-common/pngfix.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/template-common/pngfix.js b/template-common/pngfix.js
index 549761a1d..31db8bdd6 100644
--- a/template-common/pngfix.js
+++ b/template-common/pngfix.js
@@ -10,7 +10,7 @@ function correctPNG()
for(var i=0; i<document.images.length; i++)
{
var img = document.images[i]
- if (img.className == "button" || img.className == "icon")
+ if (img.className == "button" || img.className == "icon" || img.className == "png")
{
var imgName = img.src.toUpperCase()
if (imgName.substring(imgName.length-3, imgName.length) == "PNG")