autocomplete-plugin-debug.js revision 4bc090583f2a5d4fee80ca7a79a993d4e5ac14ec
/**
Binds an AutoCompleteList instance to a Node instance.
@module autocomplete
@submodule autocomplete-plugin
**/
/**
Binds an AutoCompleteList instance to a Node instance.
@example
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
@class Plugin.AutoComplete
@extends AutoCompleteList
**/
function ACListPlugin(config) {
// Render by default.
}
}
NAME : 'autocompleteListPlugin',
NS : 'ac',
});