DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Parent.subclasses Is Undefined - Prototype 1.8.0 Error
http://prototype.lighthouseapp.com/projects/8886/tickets/151-extending-yui-objects-with-prototype
fix
Class.create = Class.create.wrap(function(proceed, parent) {
if (Object.isFunction(parent))
parent.subclasses = parent.subclasses || [];
return proceed.apply(Class, $A(arguments).slice(1));
})





