org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/NotificationPopup.js
changeset 102 30e0796f3ebb
parent 73 c56c874eef47
child 210 0f7abfd6ae62
--- a/org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/NotificationPopup.js	Fri Feb 05 09:22:26 2010 -0800
+++ b/org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/NotificationPopup.js	Fri Feb 05 11:54:28 2010 -0800
@@ -159,7 +159,7 @@
     if (this.progressBarImageLoaded) {
         this.completeShowNotification();
     }
-}
+};
 
 // Completes displaying of a notification.
 // Note: Used internally - don't call this directly.
@@ -195,7 +195,7 @@
     
     // mark us as no longer processing a show notification call
     this.processingShowNotification = false;
-}
+};
 
 // Hides the currently displayed notification.
 NotificationPopup.prototype.hideNotification = function() {
@@ -214,7 +214,7 @@
         this.autoHideTimerId = null;
         uiLogger.debug("Auto hide timer stopped");
     }
-}
+};
 
 // Starts animation of the popup (1 to show, -1 to hide).
 NotificationPopup.prototype.animatePopup = function(direction) {
@@ -226,7 +226,7 @@
         this.animTimerId = setInterval(function() { self.animate(); }, this.ANIM_TIMER_INTERVAL);
         uiLogger.debug("Notification popup animation started");
     }
-}
+};
 
 // Callback for animation timer.
 NotificationPopup.prototype.animate = function() {
@@ -259,7 +259,7 @@
         this.animTimerId = null;
         uiLogger.debug("Notification popup animation stopped");
     }
-}
+};
 
 // Returns a URL for the progress bar image to use for the specified progress.
 NotificationPopup.prototype.getProgressBarImage = function(progress) {
@@ -279,7 +279,7 @@
         }
         return progressBarImagePath + "ProgressBar" + progPct + ".png";
     }
-}
+};
 
 // Sets the contents of the popup.
 NotificationPopup.prototype.setPopupContents = function(type, text, progress) {
@@ -313,7 +313,7 @@
         // to load any progress bar image
         this.progressBarImageLoaded = true;
     }
-}
+};
 
 // Callback for notifying the object that its progress bar image completed loading.
 NotificationPopup.prototype.progressBarImageLoadingCompleted = function() {
@@ -327,4 +327,4 @@
     if (this.processingShowNotification) {
         this.completeShowNotification();
     }
-}
+};