You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by do...@apache.org on 2008/02/11 21:37:59 UTC

svn commit: r620605 - /incubator/shindig/trunk/features/opensocial-reference/container.js

Author: doll
Date: Mon Feb 11 12:37:56 2008
New Revision: 620605

URL: http://svn.apache.org/viewvc?rev=620605&view=rev
Log:
Resolves SHINDIG-58.
The container's newActivity method parameters now match the activity constructor.


Modified:
    incubator/shindig/trunk/features/opensocial-reference/container.js

Modified: incubator/shindig/trunk/features/opensocial-reference/container.js
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/features/opensocial-reference/container.js?rev=620605&r1=620604&r2=620605&view=diff
==============================================================================
--- incubator/shindig/trunk/features/opensocial-reference/container.js (original)
+++ incubator/shindig/trunk/features/opensocial-reference/container.js Mon Feb 11 12:37:56 2008
@@ -300,9 +300,8 @@
  * @return {opensocial.Activity} the activity object
  * @private
  */
-opensocial.Container.prototype.newActivity = function(title,
-    opt_params) {
-  return new opensocial.Activity(title, opt_params);
+opensocial.Container.prototype.newActivity = function(opt_params) {
+  return new opensocial.Activity(opt_params);
 };