[richfaces-svn-commits] JBoss Rich Faces SVN: r14000 - trunk/examples/photoalbum/source/web/src/main/webapp/scripts.
richfaces-svn-commits at lists.jboss.org
richfaces-svn-commits at lists.jboss.org
Mon May 4 07:07:30 EDT 2009
Author: abelevich
Date: 2009-05-04 07:07:30 -0400 (Mon, 04 May 2009)
New Revision: 14000
Modified:
trunk/examples/photoalbum/source/web/src/main/webapp/scripts/photoalbum.js
Log:
fix for
IE6 footer position
Modified: trunk/examples/photoalbum/source/web/src/main/webapp/scripts/photoalbum.js
===================================================================
--- trunk/examples/photoalbum/source/web/src/main/webapp/scripts/photoalbum.js 2009-05-04 11:07:03 UTC (rev 13999)
+++ trunk/examples/photoalbum/source/web/src/main/webapp/scripts/photoalbum.js 2009-05-04 11:07:30 UTC (rev 14000)
@@ -22,4 +22,15 @@
}
}
+}
+
+// fix IE6 footer position
+function kickLayout(selector) {
+
+ if(Richfaces && Richfaces.browser.isIE6) {
+ var element = jQuery(selector);
+ if(element) {
+ element.css('zoom','normal').css('zoom','100%');
+ }
+ }
}
\ No newline at end of file
More information about the richfaces-svn-commits
mailing list