Author: abelevich
Date: 2008-01-16 09:43:21 -0500 (Wed, 16 Jan 2008)
New Revision: 5423
Modified:
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
Log:
fix this.button.style.backgroundImage
Modified:
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
===================================================================
---
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-16
14:30:40 UTC (rev 5422)
+++
trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js 2008-01-16
14:43:21 UTC (rev 5423)
@@ -96,7 +96,7 @@
if (this.isActive()) {
this.button.className= classCss.ACTIVE + " " + classCss.HOVERED;
- this.button.style.backgroundImage = iconStyles.ACTIVE
+ this.button.style.backgroundImage = iconStyles.ACTIVE;
} else {
this.button.className = classCss.NORMAL + " " + classCss.HOVERED;
this.button.style.backgroundImage = iconStyles.NORMAL;
@@ -109,10 +109,10 @@
if (this.isActive()) {
this.button.className= classCss.ACTIVE;
- this.button.style.backgroundImage = iconStyles.ACTIVE
+ this.button.style.backgroundImage = iconStyles.ACTIVE;
} else {
this.button.className = classCss.NORMAL;
- this.button.style.backgroundImage = iconStyles.NORMAL
+ this.button.style.backgroundImage = iconStyles.NORMAL;
}
},
@@ -314,7 +314,7 @@
this.field.className = this.classes.FIELD.CLASSES.DISABLED;
var iconStyles = this.classes.BUTTONICON.STYLE;
- this.button.style.backgroundImage = iconStyles.DISABLE
+ this.button.style.backgroundImage = iconStyles.DISABLED;
this.button.disabled = true;
this.field.disabled = true;
@@ -328,7 +328,7 @@
this.field.className = this.classes.FIELD.CLASSES.NORMAL;
var iconStyles = this.classes.BUTTONICON.STYLE;
- this.button.style.backgroundImage = iconStyles.NORMAL
+ this.button.style.backgroundImage = iconStyles.NORMAL;
this.button.disabled = false;
this.field.disabled = false;
Show replies by date