mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-06 08:43:31 +02:00
fix: missing file from r1492 (was merge r1490:1491)
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1499 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
<public:attach event="oncontentready" onevent="fixElements()" />
|
||||
|
||||
<script langage=javascript>
|
||||
|
||||
function setFocusStyle()
|
||||
{
|
||||
this.className += ' focus';
|
||||
}
|
||||
|
||||
function setBlurStyle()
|
||||
{
|
||||
this.className = this.className.replace( ' focus', ' nofocus');
|
||||
}
|
||||
|
||||
function setClassFromType()
|
||||
{
|
||||
this.className += ' ' + this.type;
|
||||
}
|
||||
|
||||
function fixElements()
|
||||
{
|
||||
for ( var i=0; i<this.elements.length; i++ )
|
||||
{
|
||||
var elem=this.elements[i];
|
||||
switch ( elem.tagName )
|
||||
{
|
||||
case "INPUT":
|
||||
elem.className += ' ' + elem.type;
|
||||
if ( (elem.type != "radio") && (elem.type != "checkbox") )
|
||||
{ /* setting focus/nofocus on those is a mess to handle in css */
|
||||
elem.onfocus = setFocusStyle;
|
||||
elem.onblur = setBlurStyle;
|
||||
}
|
||||
break;
|
||||
case "SELECT":
|
||||
case "TEXTAREA":
|
||||
elem.onfocus = setFocusStyle;
|
||||
elem.onblur = setBlurStyle;
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user