image-resize-source-js.mustache revision 35d039da10970deb9abb779286f19907ec86350c
YUI().use('resize', function(Y) {
var resize = new Y.Resize({
//Selector of the node to resize
node: '#demo'
});
resize.plug(Y.Plugin.ResizeConstrained, {
constrain: '#demoContainer',
minHeight: 50,
minWidth: 50
});
});