File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ var defaults = {
2222 modal : false ,
2323 position : 'center' ,
2424 resizable : true ,
25+ shadow : false ,
2526 stack : true ,
2627 title : '' ,
2728 width : 300
Original file line number Diff line number Diff line change 1- <!doctype html>
2- < html lang ="en ">
3- < head >
4- < title > Dialog Visual Test : Dialog option modal false</ title >
5- < link rel ="stylesheet " href ="../visual.css " type ="text/css " />
6- < link rel ="stylesheet " href ="../../../themes/base/ui.all.css " type ="text/css ">
7- < script type ="text/javascript " src ="../../../jquery-1.3.1.js "> </ script >
8- < script type ="text/javascript " src ="../../../ui/ui.core.js "> </ script >
9- < script type ="text/javascript " src ="../../../ui/ui.dialog.js "> </ script >
10- < script type ="text/javascript " src ="../../../ui/ui.draggable.js "> </ script >
11- < script type ="text/javascript " src ="../../../ui/ui.resizable.js "> </ script >
12- < script type ="text/javascript ">
13- $ ( function ( ) {
14- $ ( "#dialog" ) . dialog ( {
15- modal : false
16- } ) ;
17- } ) ;
18- </ script >
19- </ head >
20- < body >
21-
22- < div id ="dialog " title ="Dialog Title ">
23- < p > Dialog Content </ p >
24- </ div >
25-
26- </ body >
27- </ html >
1+ <!doctype html>
2+ < html lang ="en ">
3+ < head >
4+ < title > Dialog Visual Test : Dialog option modal false</ title >
5+ < link rel ="stylesheet " href ="../visual.css " type ="text/css " />
6+ < link rel ="stylesheet " href ="../../../themes/base/ui.all.css " type ="text/css ">
7+ < script type ="text/javascript " src ="../../../jquery-1.3.1.js "> </ script >
8+ < script type ="text/javascript " src ="../../../ui/ui.core.js "> </ script >
9+ < script type ="text/javascript " src ="../../../ui/ui.dialog.js "> </ script >
10+ < script type ="text/javascript " src ="../../../ui/ui.draggable.js "> </ script >
11+ < script type ="text/javascript " src ="../../../ui/ui.resizable.js "> </ script >
12+ < script type ="text/javascript ">
13+ $ ( function ( ) {
14+ $ ( "#dialog" ) . dialog ( {
15+ modal : false
16+ } ) ;
17+ } ) ;
18+ </ script >
19+ </ head >
20+ < body >
21+
22+ < div id ="dialog " title ="Dialog Title ">
23+ < p > Dialog Content </ p >
24+ </ div >
25+
26+ </ body >
27+ </ html >
Original file line number Diff line number Diff line change 1- <!doctype html>
2- < html lang ="en ">
3- < head >
4- < title > Dialog Visual Test : Dialog option modal true</ title >
5- < link rel ="stylesheet " href ="../visual.css " type ="text/css " />
6- < link rel ="stylesheet " href ="../../../themes/base/ui.all.css " type ="text/css ">
7- < script type ="text/javascript " src ="../../../jquery-1.3.1.js "> </ script >
8- < script type ="text/javascript " src ="../../../ui/ui.core.js "> </ script >
9- < script type ="text/javascript " src ="../../../ui/ui.dialog.js "> </ script >
10- < script type ="text/javascript " src ="../../../ui/ui.draggable.js "> </ script >
11- < script type ="text/javascript " src ="../../../ui/ui.resizable.js "> </ script >
12- < script type ="text/javascript ">
13- $ ( function ( ) {
14- $ ( "#dialog" ) . dialog ( {
15- modal : true
16- } ) ;
17- } ) ;
18- </ script >
19- </ head >
20- < body >
21-
22- < div id ="dialog " title ="Dialog Title ">
23- < p > Dialog Content </ p >
24- </ div >
25-
26- </ body >
27- </ html >
1+ <!doctype html>
2+ < html lang ="en ">
3+ < head >
4+ < title > Dialog Visual Test : Dialog option modal true</ title >
5+ < link rel ="stylesheet " href ="../visual.css " type ="text/css " />
6+ < link rel ="stylesheet " href ="../../../themes/base/ui.all.css " type ="text/css ">
7+ < script type ="text/javascript " src ="../../../jquery-1.3.1.js "> </ script >
8+ < script type ="text/javascript " src ="../../../ui/ui.core.js "> </ script >
9+ < script type ="text/javascript " src ="../../../ui/ui.dialog.js "> </ script >
10+ < script type ="text/javascript " src ="../../../ui/ui.draggable.js "> </ script >
11+ < script type ="text/javascript " src ="../../../ui/ui.resizable.js "> </ script >
12+ < script type ="text/javascript ">
13+ $ ( function ( ) {
14+ $ ( "#dialog" ) . dialog ( {
15+ modal : true
16+ } ) ;
17+ } ) ;
18+ </ script >
19+ </ head >
20+ < body >
21+
22+ < div id ="dialog " title ="Dialog Title ">
23+ < p > Dialog Content </ p >
24+ </ div >
25+
26+ </ body >
27+ </ html >
Original file line number Diff line number Diff line change 1+ <!doctype html>
2+ < html lang ="en ">
3+ < head >
4+ < title > Dialog Visual Test : Dialog option shadow false</ title >
5+ < link rel ="stylesheet " href ="../visual.css " type ="text/css " />
6+ < link rel ="stylesheet " href ="../../../themes/base/ui.all.css " type ="text/css ">
7+ < script type ="text/javascript " src ="../../../jquery-1.3.1.js "> </ script >
8+ < script type ="text/javascript " src ="../../../ui/ui.core.js "> </ script >
9+ < script type ="text/javascript " src ="../../../ui/ui.dialog.js "> </ script >
10+ < script type ="text/javascript " src ="../../../ui/ui.draggable.js "> </ script >
11+ < script type ="text/javascript " src ="../../../ui/ui.resizable.js "> </ script >
12+ < script type ="text/javascript ">
13+ $ ( function ( ) {
14+ $ ( "#dialog" ) . dialog ( {
15+ shadow : false
16+ } ) ;
17+ } ) ;
18+ </ script >
19+ </ head >
20+ < body >
21+
22+ < div id ="dialog " title ="Dialog Title ">
23+ < p > Dialog Content </ p >
24+ </ div >
25+
26+ </ body >
27+ </ html >
Original file line number Diff line number Diff line change 1+ <!doctype html>
2+ < html lang ="en ">
3+ < head >
4+ < title > Dialog Visual Test : Dialog option shadow true</ title >
5+ < link rel ="stylesheet " href ="../visual.css " type ="text/css " />
6+ < link rel ="stylesheet " href ="../../../themes/base/ui.all.css " type ="text/css ">
7+ < script type ="text/javascript " src ="../../../jquery-1.3.1.js "> </ script >
8+ < script type ="text/javascript " src ="../../../ui/ui.core.js "> </ script >
9+ < script type ="text/javascript " src ="../../../ui/ui.dialog.js "> </ script >
10+ < script type ="text/javascript " src ="../../../ui/ui.draggable.js "> </ script >
11+ < script type ="text/javascript " src ="../../../ui/ui.resizable.js "> </ script >
12+ < script type ="text/javascript ">
13+ $ ( function ( ) {
14+ $ ( "#dialog" ) . dialog ( {
15+ shadow : true
16+ } ) ;
17+ } ) ;
18+ </ script >
19+ </ head >
20+ < body >
21+
22+ < div id ="dialog " title ="Dialog Title ">
23+ < p > Dialog Content </ p >
24+ </ div >
25+
26+ </ body >
27+ </ html >
Original file line number Diff line number Diff line change @@ -522,7 +522,7 @@ $.extend($.ui.dialog, {
522522 modal : false ,
523523 position : 'center' ,
524524 resizable : true ,
525- shadow : true ,
525+ shadow : false ,
526526 stack : true ,
527527 title : '' ,
528528 width : 300 ,
You can’t perform that action at this time.
0 commit comments