Cross Reference: image-resize-source-js.mustache
xref
: /
yui3
/
src
/
resize
/
docs
/
partials
/
image-resize-source-js.mustache
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
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
});
});