You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by et...@apache.org on 2008/01/23 23:39:19 UTC

svn commit: r614720 - /incubator/shindig/trunk/features/settitle/settitle.js

Author: etnu
Date: Wed Jan 23 14:39:17 2008
New Revision: 614720

URL: http://svn.apache.org/viewvc?rev=614720&view=rev
Log:
Fixed typo in settitle.js


Modified:
    incubator/shindig/trunk/features/settitle/settitle.js

Modified: incubator/shindig/trunk/features/settitle/settitle.js
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/features/settitle/settitle.js?rev=614720&r1=614719&r2=614720&view=diff
==============================================================================
--- incubator/shindig/trunk/features/settitle/settitle.js (original)
+++ incubator/shindig/trunk/features/settitle/settitle.js Wed Jan 23 14:39:17 2008
@@ -22,18 +22,18 @@
  */
 
 var gadgets = gadgets || {};
-gadets.window = gadets.window || {};
+gadgets.window = gadgets.window || {};
 
 /**
  * Sets the gadget title.
  * @param {String} title Preferred title.
  */
-gadets.window.setTitle = function(title) {
+gadgets.window.setTitle = function(title) {
   var modId = 'remote_module_' + (new gadgets.Prefs()).getModuleId();
   var ifpcRelay = gadgets.util.getUrlParameters().parent || '';
   gadgets.IFPC_.call(modId, 'set_title', [modId, title], ifpcRelay, null, '');
 };
 
 // Alias for legacy code
-var _IG_SetTitle = gadets.window.setTitle;
+var _IG_SetTitle = gadgets.window.setTitle;