Author: andyhot
Date: Thu Oct  4 04:45:41 2007
New Revision: 581860

URL: http://svn.apache.org/viewvc?rev=581860&view=rev
Log:
Allow specifying the eventName

Modified:
    tapestry/tapestry4/trunk/tapestry-framework/src/js/tapestry/core.js

Modified: tapestry/tapestry4/trunk/tapestry-framework/src/js/tapestry/core.js
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/src/js/tapestry/core.js?rev=581860&r1=581859&r2=581860&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/src/js/tapestry/core.js 
(original)
+++ tapestry/tapestry4/trunk/tapestry-framework/src/js/tapestry/core.js Thu Oct 
 4 04:45:41 2007
@@ -504,8 +504,8 @@
        /**
         * Function: linkOnClick
          */
-       linkOnClick:function(url, id, isJson){
-               var content={beventname:"onClick"};
+       linkOnClick:function(url, id, isJson, eventName){
+               var content={beventname:(eventName || "onClick")};
                content["beventtarget.id"]=id;
 
                tapestry.bind(url, content, isJson);


Reply via email to