org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/NavigationButton.js
changeset 102 30e0796f3ebb
parent 73 c56c874eef47
child 210 0f7abfd6ae62
--- a/org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/NavigationButton.js	Fri Feb 05 09:22:26 2010 -0800
+++ b/org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/NavigationButton.js	Fri Feb 05 11:54:28 2010 -0800
@@ -111,7 +111,7 @@
     
     // update the style
     this.updateStyleFromState();
-}
+};
 
 // Sets the enabled state.
 NavigationButton.prototype.setEnabled = function(enabled) {
@@ -139,12 +139,12 @@
     
     // update the style
     this.updateStyleFromState();
-}
+};
 
 // Returns the button image (URL); null if none.
 NavigationButton.prototype.getImage = function() {
     return (this.imageElement != null) ? this.imageElement.src : null;
-}
+};
 
 // Sets the button image (URL); null if none.
 NavigationButton.prototype.setImage = function(image) {
@@ -174,18 +174,18 @@
             this.tableLeftCellElement.appendChild(this.imageElement);
         }
     }
-}
+};
 
 // Returns the button text.
 NavigationButton.prototype.getText = function() {
     return this.textElement.innerHTML;
-}
+};
 
 // Sets the button text.
 NavigationButton.prototype.setText = function(text) {
     uiLogger.debug("NavigationButton.setText(" + text + ")");
     this.textElement.innerHTML = (text == null) ? "" : text;;
-}
+};
 
 // Updates the style of the control to reflects the state of the control.
 NavigationButton.prototype.updateStyleFromState = function() {
@@ -217,4 +217,4 @@
     
     // set the button text class name
     this.setClassName(this.textElement, "NavigationButtonText NavigationButtonText" + stateName);
-}
+};