Cross Reference: resize.html
xref
: /
yui3
/
src
/
resize
/
tests
/
manual
/
resize.html
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
0
N/A
<!
DOCTYPE
HTML
PUBLIC
"-//W3C//DTD HTML 4.01//EN" "
http://www.w3.org/TR/html4/strict.dtd
"
>
0
N/A
<
html
>
0
N/A
<
head
>
0
N/A
<
meta
http
-
equiv=
"content-type"
content=
"
text
/
html
; charset=utf-8"
>
0
N/A
<
title
>Resize Manual Test</
title
>
0
N/A
<
script
src=
"/
build
/
yui
/
yui-min.js
"
></
script
>
0
N/A
0
N/A
<
style
>
0
N/A
#resize{
0
N/A
position: relative;
0
N/A
width:100px;
0
N/A
height:100px;
0
N/A
background-color:#abc;
0
N/A
}
0
N/A
</
style
>
0
N/A
0
N/A
<
body
class=
"yui3-skin-sam"
>
0
N/A
<
div
id=
"resize"
>Resize me</
div
>
0
N/A
<
script
>
0
N/A
YUI({filter: 'raw'},{ skin: 'sam' }).use('resize', function(Y) {
0
N/A
var resize = new
Y.Resize
({
0
N/A
//Selector of the node to resize
0
N/A
node: '#resize'
0
N/A
});
0
N/A
});
0
N/A
</
script
>
0
N/A
</
body
>
0
N/A
</
html
>
0
N/A