Author: doll
Date: Tue Mar 25 13:25:41 2008
New Revision: 640969
URL: http://svn.apache.org/viewvc?rev=640969&view=rev
Log:
Fix javascript typo in enableCaja function
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=640969&r1=640968&r2=640969&view=diff
==============================================================================
--- incubator/shindig/trunk/features/opensocial-reference/container.js
(original)
+++ incubator/shindig/trunk/features/opensocial-reference/container.js Tue Mar
25 13:25:41 2008
@@ -444,7 +444,7 @@
uri = String(uri);
// By default, only allow references to anchors.
if (/^#/.test(uri)) {
- return '#' + encodeURIComponent(decodeUriComponent(uri.substring(1)));
+ return '#' + encodeURIComponent(decodeURIComponent(uri.substring(1)));
}
// This callback can be replaced with one that passes the URL through
// a proxy that checks the mimetype.