Skip to content

Instantly share code, notes, and snippets.

YUI.add('plugin-dt-accordion', function(Y){
Y.Node.prototype.wrapInner = function(html) {
var n = Y.Node.create(html);
this.setData('preWrappedContent', this.getContent())
n.prepend(this.getData('preWrappedContent'));
this.setContent(n);
return this;
};