File tree Expand file tree Collapse file tree 1 file changed +50
-0
lines changed Expand file tree Collapse file tree 1 file changed +50
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 " />
5
+ < title > Panel Visual Test : Default</ title >
6
+ < link rel ="stylesheet " href ="../visual.css " type ="text/css " />
7
+ < link rel ="stylesheet " href ="../../../themes/base/jquery.ui.all.css " type ="text/css ">
8
+ < script type ="text/javascript " src ="../../../jquery-1.4.2.js "> </ script >
9
+ < script type ="text/javascript " src ="../../../ui/jquery.ui.core.js "> </ script >
10
+ < script type ="text/javascript " src ="../../../ui/jquery.ui.widget.js "> </ script >
11
+ < script type ="text/javascript " src ="../../../ui/jquery.ui.panel.js "> </ script >
12
+ < script type ="text/javascript ">
13
+ $ ( function ( ) {
14
+ $ ( "#panel1" ) . panel ( { } ) ;
15
+ $ ( "#panel2" ) . panel ( { collapseType : 'left' } ) ;
16
+ $ ( "#panel3" ) . panel ( { collapseType : 'right' } ) ;
17
+ } )
18
+ </ script >
19
+ </ head >
20
+ < body >
21
+
22
+ < div id ="panel1 ">
23
+ < h3 > < a href ="# "> Panel Header</ a > </ h3 >
24
+ < div >
25
+ Panel Content
26
+ </ div >
27
+ </ div >
28
+
29
+ < br /> < br />
30
+
31
+ < div id ="panel2 ">
32
+ < h3 > < a href ="# "> Left Sliding Panel Header</ a > </ h3 >
33
+ < div >
34
+ Left Sliding Panel Content
35
+ </ div >
36
+ </ div >
37
+
38
+ < br /> < br />
39
+
40
+ < div id ="panel3 ">
41
+ < h3 > < a href ="# "> Right Sliding Panel Header</ a > </ h3 >
42
+ < div >
43
+ Right Sliding Panel Content
44
+ </ div >
45
+ </ div >
46
+
47
+ < br /> < br />
48
+
49
+ </ body >
50
+ </ html >
You can’t perform that action at this time.
0 commit comments