Skip to content

Instantly share code, notes, and snippets.

@apipkin
Created February 2, 2010 15:25
Show Gist options
  • Save apipkin/292740 to your computer and use it in GitHub Desktop.
Save apipkin/292740 to your computer and use it in GitHub Desktop.
YUI({
modules: {
'echofin-form-filter' : {
fullpath: 'echofin-form-filter.js',
requires: ['base','node','event']
}
}
}).use('echofin-form-filter',function(Y){
Y.on('domready',function(){
Y.all('.filtered').each(function(o){
o.plug(Y.Echofin.Form.Filter).after(function(e){
o.filter.addChar('z');
});
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment