Skip to content

Commit 83e4ee0

Browse files
committed
added vertical form test
upgraded to jquery 1.6.2 for tooltip
1 parent b237f7f commit 83e4ee0

File tree

5 files changed

+48
-4
lines changed

5 files changed

+48
-4
lines changed

test/tooltip/click.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
<script src="../../../jquery-1.3.2.js"></script>
2+
<script src="../../../jquery-1.6.2.js"></script>
33
<script src="../tools.tooltip.js"></script>
44
<link rel="stylesheet" type="text/css" href="style.css"/>
55

test/tooltip/dynamic.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
<script src="../../../jquery-1.3.2.js"></script>
2+
<script src="../../../jquery-1.6.2.js"></script>
33
<script src="../tools.tooltip.js"></script>
44
<script src="../tools.tooltip.dynamic.js"></script>
55

test/tooltip/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
<script src="../js/jquery-1.4.1.js"></script>
2+
<script src="../js/jquery-1.6.2.js"></script>
33
<script src="../../src/tooltip/tooltip.js"></script>
44
<script src="../../src/tooltip/tooltip.slide.js"></script>
55

test/tooltip/many.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
<script src="../js/jquery-1.4.1.js"></script>
2+
<script src="../js/jquery-1.6.2.js"></script>
33
<script src="../../src/tooltip/tooltip.js"></script>
44

55
<style>

test/tooltip/vertical_form.html

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
2+
<script src="../js/jquery-1.6.2.js"></script>
3+
<script src="../../src/tooltip/tooltip.js"></script>
4+
5+
<style type="text/css">
6+
body{
7+
padding:50px;
8+
}
9+
10+
input {
11+
display:block;
12+
margin:10px;
13+
}
14+
15+
/* tooltip styling. by default the element to be styled is .tooltip */
16+
.tooltip {
17+
display:none;
18+
background:transparent url('http://flowplayer.org/tools/img/tooltip/black_arrow.png');
19+
font-size:12px;
20+
height:70px;
21+
width:160px;
22+
padding:25px;
23+
color:#fff;
24+
}
25+
</style>
26+
27+
<input type="text" title="The tooltip text #1" />
28+
<input type="text" title="The tooltip text #2" />
29+
<input type="text" title="The tooltip text #3" />
30+
<input type="text" title="The tooltip text #4" />
31+
<input type="text" title="The tooltip text #5" />
32+
<input type="text" title="The tooltip text #6" />
33+
<input type="text" title="The tooltip text #7" />
34+
<input type="text" title="The tooltip text #8" />
35+
36+
<script type="text/javascript">
37+
$(function(){
38+
$("input").tooltip({
39+
events: {
40+
input: "mouseover,mouseout"
41+
}
42+
});
43+
});
44+
</script>

0 commit comments

Comments
 (0)