diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-12-28 18:56:09 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-12-28 18:56:09 +0000 |
commit | dfea79ee5500254de94a73d6292dd893f9616869 (patch) | |
tree | 9e3862fdf12b229782cb813b3e025498956fb385 /themes/default/js/pngfix.js | |
parent | faf97e2d6ba5b80ef5bf45753ac89d641abd9086 (diff) |
- css sprites work for ie6
- simplify/remove css
git-svn-id: http://piwigo.org/svn/trunk@8362 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | themes/default/js/pngfix.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/default/js/pngfix.js b/themes/default/js/pngfix.js index 549761a1d..45f9b3e5b 100644 --- a/themes/default/js/pngfix.js +++ b/themes/default/js/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") { var imgName = img.src.toUpperCase() if (imgName.substring(imgName.length-3, imgName.length) == "PNG") |