You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by li...@apache.org on 2009/01/12 04:43:49 UTC

svn commit: r733597 - in /incubator/shindig/branches/1.0.x-incubating: ./ javascript/container/gadgets.js

Author: lindner
Date: Sun Jan 11 19:43:48 2009
New Revision: 733597

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

Modified:
    incubator/shindig/branches/1.0.x-incubating/   (props changed)
    incubator/shindig/branches/1.0.x-incubating/javascript/container/gadgets.js

Propchange: incubator/shindig/branches/1.0.x-incubating/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Jan 11 19:43:48 2009
@@ -1 +1 @@
-/incubator/shindig/trunk:724511-724522,724874,724915,724939,726597,727032-727033,727048
+/incubator/shindig/trunk:724511-724522,724874,724915,724939,726597,727032-727033,727048,733593,733596

Modified: incubator/shindig/branches/1.0.x-incubating/javascript/container/gadgets.js
URL: http://svn.apache.org/viewvc/incubator/shindig/branches/1.0.x-incubating/javascript/container/gadgets.js?rev=733597&r1=733596&r2=733597&view=diff
==============================================================================
--- incubator/shindig/branches/1.0.x-incubating/javascript/container/gadgets.js (original)
+++ incubator/shindig/branches/1.0.x-incubating/javascript/container/gadgets.js Sun Jan 11 19:43:48 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) {