org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/UIManager.js
changeset 102 30e0796f3ebb
parent 73 c56c874eef47
child 210 0f7abfd6ae62
--- a/org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/UIManager.js	Fri Feb 05 09:22:26 2010 -0800
+++ b/org.symbian.tools.wrttools/projecttemplates/WRTKit/UI/UIManager.js	Fri Feb 05 11:54:28 2010 -0800
@@ -134,12 +134,12 @@
             self.updateScrollbar();
         }, false);
     }
-}
+};
 
 // Returns the current view.
 UIManager.prototype.getView = function() {
     return this.currentView;
-}
+};
 
 // Switches to the specified view.
 UIManager.prototype.setView = function(view) {
@@ -168,7 +168,7 @@
     // focus the first focusable control
     // a timer is used to prevent unwanted focus shift
     setTimeout(function() { view.focusFirstControl(); }, 1);
-}
+};
 
 // Updates the scrollbar.
 UIManager.prototype.updateScrollbar = function() {
@@ -192,7 +192,7 @@
             uiLogger.debug("Scrollbar updated");
         }
     }
-}
+};
 
 // Starts the view manager timer.
 UIManager.prototype.startTimer = function() {
@@ -204,7 +204,7 @@
     } else {
         uiLogger.warn("UIManager timer already running");
     }
-}
+};
 
 // Stops the view manager timer.
 UIManager.prototype.stopTimer = function() {
@@ -215,7 +215,7 @@
     } else {
         uiLogger.warn("UIManager timer already stopped");
     }
-}
+};
 
 // Timer callback function.
 UIManager.prototype.onTimer = function() {
@@ -223,18 +223,18 @@
         // make sure the scrollbar is up to date
         this.updateScrollbar();
     }
-}
+};
 
 // Displays a notification.
 UIManager.prototype.showNotification = function(displayTime, type, text, progress) {
     uiLogger.debug("UIManager.showNotification(" + displayTime + ", " + type + ", " + text + ", " + progress + ")");
     // use the notification popup to show the notification
     this.notificationPopup.showNotification(displayTime, type, text, progress);
-}
+};
 
 // Hides the currently displayed notification.
 UIManager.prototype.hideNotification = function() {
     uiLogger.debug("UIManager.hideNotification()");
     // hide the notification popup
     this.notificationPopup.hideNotification();
-}
+};