File tree Expand file tree Collapse file tree 10 files changed +20
-80
lines changed Expand file tree Collapse file tree 10 files changed +20
-80
lines changed Original file line number Diff line number Diff line change 4
4
< meta charset ="utf-8 ">
5
5
< title > jQuery UI Resizable - Animate</ title >
6
6
< link rel ="stylesheet " href ="../../themes/base/all.css ">
7
- < script src ="../../external/jquery/jquery.js "> </ script >
8
- < script src ="../../ui/core.js "> </ script >
9
- < script src ="../../ui/widget.js "> </ script >
10
- < script src ="../../ui/mouse.js "> </ script >
11
- < script src ="../../ui/resizable.js "> </ script >
12
7
< link rel ="stylesheet " href ="../demos.css ">
13
8
< style >
14
9
# resizable { width : 150px ; height : 150px ; padding : 0.5em ; }
15
10
# resizable h3 { text-align : center; margin : 0 ; }
16
11
.ui-resizable-helper { border : 1px dotted gray; }
17
12
</ style >
18
- < script >
19
- $ ( function ( ) {
13
+ < script src =" ../../external/requirejs/require.js " > </ script >
14
+ < script src =" ../bootstrap.js " >
20
15
$ ( "#resizable" ) . resizable ( {
21
16
animate : true
22
17
} ) ;
23
- } ) ;
24
18
</ script >
25
19
</ head >
26
20
< body >
Original file line number Diff line number Diff line change 4
4
< meta charset ="utf-8 ">
5
5
< title > jQuery UI Resizable - Preserve aspect ratio</ title >
6
6
< link rel ="stylesheet " href ="../../themes/base/all.css ">
7
- < script src ="../../external/jquery/jquery.js "> </ script >
8
- < script src ="../../ui/core.js "> </ script >
9
- < script src ="../../ui/widget.js "> </ script >
10
- < script src ="../../ui/mouse.js "> </ script >
11
- < script src ="../../ui/resizable.js "> </ script >
12
7
< link rel ="stylesheet " href ="../demos.css ">
13
8
< style >
14
9
# resizable { width : 160px ; height : 90px ; padding : 0.5em ; }
15
10
# resizable h3 { text-align : center; margin : 0 ; }
16
11
</ style >
17
- < script >
18
- $ ( function ( ) {
12
+ < script src =" ../../external/requirejs/require.js " > </ script >
13
+ < script src =" ../bootstrap.js " >
19
14
$ ( "#resizable" ) . resizable ( {
20
15
aspectRatio : 16 / 9
21
16
} ) ;
22
- } ) ;
23
17
</ script >
24
18
</ head >
25
19
< body >
Original file line number Diff line number Diff line change 4
4
< meta charset ="utf-8 ">
5
5
< title > jQuery UI Resizable - Constrain resize area</ title >
6
6
< link rel ="stylesheet " href ="../../themes/base/all.css ">
7
- < script src ="../../external/jquery/jquery.js "> </ script >
8
- < script src ="../../ui/core.js "> </ script >
9
- < script src ="../../ui/widget.js "> </ script >
10
- < script src ="../../ui/mouse.js "> </ script >
11
- < script src ="../../ui/resizable.js "> </ script >
12
7
< link rel ="stylesheet " href ="../demos.css ">
13
8
< style >
14
9
# container { width : 300px ; height : 300px ; }
15
10
# container h3 { text-align : center; margin : 0 ; margin-bottom : 10px ; }
16
11
# resizable { background-position : top left; width : 150px ; height : 150px ; }
17
12
# resizable , # container { padding : 0.5em ; }
18
13
</ style >
19
- < script >
20
- $ ( function ( ) {
14
+ < script src =" ../../external/requirejs/require.js " > </ script >
15
+ < script src =" ../bootstrap.js " >
21
16
$ ( "#resizable" ) . resizable ( {
22
17
containment : "#container"
23
18
} ) ;
24
- } ) ;
25
19
</ script >
26
20
</ head >
27
21
< body >
Original file line number Diff line number Diff line change 4
4
< meta charset ="utf-8 ">
5
5
< title > jQuery UI Resizable - Default functionality</ title >
6
6
< link rel ="stylesheet " href ="../../themes/base/all.css ">
7
- < script src ="../../external/jquery/jquery.js "> </ script >
8
- < script src ="../../ui/core.js "> </ script >
9
- < script src ="../../ui/widget.js "> </ script >
10
- < script src ="../../ui/mouse.js "> </ script >
11
- < script src ="../../ui/resizable.js "> </ script >
12
7
< link rel ="stylesheet " href ="../demos.css ">
13
8
< style >
14
9
# resizable { width : 150px ; height : 150px ; padding : 0.5em ; }
15
10
# resizable h3 { text-align : center; margin : 0 ; }
16
11
</ style >
17
- < script >
18
- $ ( function ( ) {
12
+ < script src =" ../../external/requirejs/require.js " > </ script >
13
+ < script src =" ../bootstrap.js " >
19
14
$ ( "#resizable" ) . resizable ( ) ;
20
- } ) ;
21
15
</ script >
22
16
</ head >
23
17
< body >
Original file line number Diff line number Diff line change 4
4
< meta charset ="utf-8 ">
5
5
< title > jQuery UI Resizable - Helper</ title >
6
6
< link rel ="stylesheet " href ="../../themes/base/all.css ">
7
- < script src ="../../external/jquery/jquery.js "> </ script >
8
- < script src ="../../ui/core.js "> </ script >
9
- < script src ="../../ui/widget.js "> </ script >
10
- < script src ="../../ui/mouse.js "> </ script >
11
- < script src ="../../ui/resizable.js "> </ script >
12
7
< link rel ="stylesheet " href ="../demos.css ">
13
8
< style >
14
9
# resizable { width : 150px ; height : 150px ; padding : 0.5em ; }
15
10
# resizable h3 { text-align : center; margin : 0 ; }
16
11
.ui-resizable-helper { border : 2px dotted # 00F ; }
17
12
</ style >
18
- < script >
19
- $ ( function ( ) {
13
+ < script src =" ../../external/requirejs/require.js " > </ script >
14
+ < script src =" ../bootstrap.js " >
20
15
$ ( "#resizable" ) . resizable ( {
21
16
helper : "ui-resizable-helper"
22
17
} ) ;
23
- } ) ;
24
18
</ script >
25
19
</ head >
26
20
< body >
Original file line number Diff line number Diff line change 4
4
< meta charset ="utf-8 ">
5
5
< title > jQuery UI Resizable - Maximum / minimum size</ title >
6
6
< link rel ="stylesheet " href ="../../themes/base/all.css ">
7
- < script src ="../../external/jquery/jquery.js "> </ script >
8
- < script src ="../../ui/core.js "> </ script >
9
- < script src ="../../ui/widget.js "> </ script >
10
- < script src ="../../ui/mouse.js "> </ script >
11
- < script src ="../../ui/resizable.js "> </ script >
12
7
< link rel ="stylesheet " href ="../demos.css ">
13
8
< style >
14
9
# resizable { width : 200px ; height : 150px ; padding : 5px ; }
15
10
# resizable h3 { text-align : center; margin : 0 ; }
16
11
</ style >
17
- < script >
18
- $ ( function ( ) {
12
+ < script src =" ../../external/requirejs/require.js " > </ script >
13
+ < script src =" ../bootstrap.js " >
19
14
$ ( "#resizable" ) . resizable ( {
20
15
maxHeight : 250 ,
21
16
maxWidth : 350 ,
22
17
minHeight : 150 ,
23
18
minWidth : 200
24
19
} ) ;
25
- } ) ;
26
20
</ script >
27
21
</ head >
28
22
< body >
Original file line number Diff line number Diff line change 4
4
< meta charset ="utf-8 ">
5
5
< title > jQuery UI Resizable - Snap to grid</ title >
6
6
< link rel ="stylesheet " href ="../../themes/base/all.css ">
7
- < script src ="../../external/jquery/jquery.js "> </ script >
8
- < script src ="../../ui/core.js "> </ script >
9
- < script src ="../../ui/widget.js "> </ script >
10
- < script src ="../../ui/mouse.js "> </ script >
11
- < script src ="../../ui/resizable.js "> </ script >
12
7
< link rel ="stylesheet " href ="../demos.css ">
13
8
< style >
14
9
# resizable { width : 150px ; height : 150px ; padding : 0.5em ; }
15
10
# resizable h3 { text-align : center; margin : 0 ; }
16
11
</ style >
17
- < script >
18
- $ ( function ( ) {
12
+ < script src =" ../../external/requirejs/require.js " > </ script >
13
+ < script src =" ../bootstrap.js " >
19
14
$ ( "#resizable" ) . resizable ( {
20
15
grid : 50
21
16
} ) ;
22
- } ) ;
23
17
</ script >
24
18
</ head >
25
19
< body >
Original file line number Diff line number Diff line change 4
4
< meta charset ="utf-8 ">
5
5
< title > jQuery UI Resizable - Synchronous resize</ title >
6
6
< link rel ="stylesheet " href ="../../themes/base/all.css ">
7
- < script src ="../../external/jquery/jquery.js "> </ script >
8
- < script src ="../../ui/core.js "> </ script >
9
- < script src ="../../ui/widget.js "> </ script >
10
- < script src ="../../ui/mouse.js "> </ script >
11
- < script src ="../../ui/resizable.js "> </ script >
12
7
< link rel ="stylesheet " href ="../demos.css ">
13
8
< style >
14
9
# resizable { background-position : top left; }
15
10
# resizable , # also { width : 150px ; height : 120px ; padding : 0.5em ; }
16
11
# resizable h3 , # also h3 { text-align : center; margin : 0 ; }
17
12
# also { margin-top : 1em ; }
18
13
</ style >
19
- < script >
20
- $ ( function ( ) {
14
+ < script src =" ../../external/requirejs/require.js " > </ script >
15
+ < script src =" ../bootstrap.js " >
21
16
$ ( "#resizable" ) . resizable ( {
22
17
alsoResize : "#also"
23
18
} ) ;
24
19
$ ( "#also" ) . resizable ( ) ;
25
- } ) ;
26
20
</ script >
27
21
</ head >
28
22
< body >
Original file line number Diff line number Diff line change 4
4
< meta charset ="utf-8 ">
5
5
< title > jQuery UI Resizable - Textarea</ title >
6
6
< link rel ="stylesheet " href ="../../themes/base/all.css ">
7
- < script src ="../../external/jquery/jquery.js "> </ script >
8
- < script src ="../../ui/core.js "> </ script >
9
- < script src ="../../ui/widget.js "> </ script >
10
- < script src ="../../ui/mouse.js "> </ script >
11
- < script src ="../../ui/resizable.js "> </ script >
12
7
< link rel ="stylesheet " href ="../demos.css ">
13
8
< style >
14
9
.ui-resizable-se {
15
10
bottom : 17px ;
16
11
}
17
12
</ style >
18
- < script >
19
- $ ( function ( ) {
13
+ < script src =" ../../external/requirejs/require.js " > </ script >
14
+ < script src =" ../bootstrap.js " >
20
15
$ ( "#resizable" ) . resizable ( {
21
16
handles : "se"
22
17
} ) ;
23
- } ) ;
24
18
</ script >
25
19
</ head >
26
20
< body >
Original file line number Diff line number Diff line change 4
4
< meta charset ="utf-8 ">
5
5
< title > jQuery UI Resizable - Visual feedback</ title >
6
6
< link rel ="stylesheet " href ="../../themes/base/all.css ">
7
- < script src ="../../external/jquery/jquery.js "> </ script >
8
- < script src ="../../ui/core.js "> </ script >
9
- < script src ="../../ui/widget.js "> </ script >
10
- < script src ="../../ui/mouse.js "> </ script >
11
- < script src ="../../ui/resizable.js "> </ script >
12
7
< link rel ="stylesheet " href ="../demos.css ">
13
8
< style >
14
9
# resizable { width : 150px ; height : 150px ; padding : 0.5em ; }
15
10
# resizable h3 { text-align : center; margin : 0 ; }
16
11
.ui-resizable-ghost { border : 1px dotted gray; }
17
12
</ style >
18
- < script >
19
- $ ( function ( ) {
13
+ < script src =" ../../external/requirejs/require.js " > </ script >
14
+ < script src =" ../bootstrap.js " >
20
15
$ ( "#resizable" ) . resizable ( {
21
16
ghost : true
22
17
} ) ;
23
- } ) ;
24
18
</ script >
25
19
</ head >
26
20
< body >
You can’t perform that action at this time.
0 commit comments