Updating AjaxHelper docblocks to remove references to deprecated methods

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3960 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
nate 2006-11-25 08:57:27 +00:00
parent 41c79da1c3
commit b7e8551143

View file

@ -44,6 +44,10 @@ class AjaxHelper extends AppHelper {
* @var array
*/
var $helpers = array('Html', 'Javascript');
var $Html = null;
var $Javascript = null;
/**
* Names of Javascript callback functions.
*
@ -203,10 +207,9 @@ class AjaxHelper extends AppHelper {
* Creates JavaScript function for remote AJAX call
*
* This function creates the javascript needed to make a remote call
* it is primarily used as a helper for linkToRemote.
*
* @see linkToRemote() for docs on options parameter.
* it is primarily used as a helper for AjaxHelper::link.
*
* @see AjaxHelper::link() for docs on options parameter.
* @param array $options options for javascript
* @return string html code for link to remote action
*/