autocomplete-plugin-debug.js revision 76ca635d61eb3f9fb7c9d788a44fa8b1690aa138
/**
* Binds an AutoCompleteList instance to a Node instance.
*
* @module autocomplete
* @submodule autocomplete-plugin
*/
/**
* <p>
* Binds an AutoCompleteList instance to a Node instance.
* </p>
*
* <p>
* Example:
* </p>
*
* <pre>
* Y.one('#my-input').plug(Y.Plugin.AutoComplete, {
* source: 'select * from search.suggest where query="{query}"'
* });
*
* // You can now access the AutoCompleteList instance at Y.one('#my-input').ac
* </pre>
*
* @class Plugin.AutoComplete
* @extends AutoCompleteList
*/
function ACListPlugin(config) {
// Render by default.
}
}
NAME : 'autocompleteListPlugin',
NS : 'ac',
});