You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by he...@apache.org on 2014/07/02 13:27:23 UTC

svn commit: r1607314 - /thrift/cms-site/trunk/content/tutorial/js.md

Author: henrique
Date: Wed Jul  2 11:27:22 2014
New Revision: 1607314

URL: http://svn.apache.org/r1607314
Log:
link to jquery api

Modified:
    thrift/cms-site/trunk/content/tutorial/js.md

Modified: thrift/cms-site/trunk/content/tutorial/js.md
URL: http://svn.apache.org/viewvc/thrift/cms-site/trunk/content/tutorial/js.md?rev=1607314&r1=1607313&r2=1607314&view=diff
==============================================================================
--- thrift/cms-site/trunk/content/tutorial/js.md (original)
+++ thrift/cms-site/trunk/content/tutorial/js.md Wed Jul  2 11:27:22 2014
@@ -125,6 +125,6 @@ This method call will return immediately
     .done( function(result) { /* success! do something */ } )
     .always( function() { /* do something more */ } );
 
-For more information refer to: http://api.jquery.com/jquery.ajax/
+For more information refer to: [http://api.jquery.com/jquery.ajax/]
 
 Note: Synchronously calls are easy to debug and good for testing but should not be used on a front-end browser in production, as it will normally result on a full-browser freeze until the response has returned from the server.