Author: lindner
Date: Sun Jan 11 19:37:39 2009
New Revision: 733596

URL: http://svn.apache.org/viewvc?rev=733596&view=rev
Log:
SHINDIG-708 | Patch from Mathias Bogaert | Typos in gadgets.js

Modified:
    incubator/shindig/trunk/javascript/container/gadgets.js

Modified: incubator/shindig/trunk/javascript/container/gadgets.js
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/javascript/container/gadgets.js?rev=733596&r1=733595&r2=733596&view=diff
==============================================================================
--- incubator/shindig/trunk/javascript/container/gadgets.js (original)
+++ incubator/shindig/trunk/javascript/container/gadgets.js Sun Jan 11 19:37:39 
2009
@@ -304,7 +304,7 @@
 
 /**
  * Sets chrome ids, whose indexes are gadget instance ids (starting from 0).
- * @param {Array} gadgetIdToChromeIdMap Gadget id to chrome id map
+ * @param {Array} gadgetChromeIds Gadget id to chrome id map
  */
 gadgets.StaticLayoutManager.prototype.setGadgetChromeIds =
     function(gadgetChromeIds) {
@@ -339,7 +339,7 @@
   if (layoutRoot) {
     var chrome = document.createElement('div');
     chrome.className = 'gadgets-gadget-chrome';
-    chrome.style.cssFloat = 'left'
+    chrome.style.cssFloat = 'left';
     layoutRoot.appendChild(chrome);
     return chrome;
   } else {
@@ -423,7 +423,7 @@
 
 /**
  * Gets title bar content asynchronously or synchronously.
- * @param {Function} continutation Function that handles title bar content as
+ * @param {Function} continuation Function that handles title bar content as
  *     the one and only argument
  */
 gadgets.Gadget.prototype.getTitleBarContent = function(continuation) {
@@ -432,7 +432,7 @@
 
 /**
  * Gets user preferences dialog content asynchronously or synchronously.
- * @param {Function} continutation Function that handles user preferences
+ * @param {Function} continuation Function that handles user preferences
  *     content as the one and only argument
  */
 gadgets.Gadget.prototype.getUserPrefsDialogContent = function(continuation) {
@@ -441,7 +441,7 @@
 
 /**
  * Gets gadget content asynchronously or synchronously.
- * @param {Function} continutation Function that handles gadget content as
+ * @param {Function} continuation Function that handles gadget content as
  *     the one and only argument
  */
 gadgets.Gadget.prototype.getMainContent = function(continuation) {


Reply via email to