forked from jupiterjs/jquerymx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
88 lines (83 loc) · 1.98 KB
/
default.html
File metadata and controls
88 lines (83 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>default</title>
<style type='text/css'>
body {font-family: verdana}
.error {border: solid 1px red;}
.error_text { color: red; font-size: 10px;}
td {padding: 3px;}
.clickme {
padding: 5px; margin: 5px;
border: dashed 1px red;
width: 100px;
}
ul li {
float: left;
border: solid 1px red;
padding: 5px;
list-style: none;
}
ul { margin: 0px; padding: 0px;}
.tab {
clear: both;
border: solid 1px black;
padding: 10px;
}
</style>
</head>
<body>
<h1>Default Events</h1>
<p>A tabs widget that doesn't let you continue until the first part is complete.</p>
<div id="demo-html">
<div id='tabs'>
<ul>
<li><a href='#first'>Part 1</a></li>
<li><a href='#second'>Part 2</a></li>
</ul>
<div id='first' class='tab'>
<input type='checkbox' id='complete'/> Check to complete this part.
</div>
<div id='second' class='tab'>
You completed part 1
</div>
</div>
</div>
<script type='text/javascript'
src='../../../steal/steal.js'>
</script>
<script id="demo-source" type='text/javascript'>
steal("jquery/controller",'jquery/event/default').then(function($){
$.Controller("Tabs",{
init : function(){
this.find("li:first").addClass('active')
this.find(".tab:gt(0)").hide();
},
"li click" : function(el, ev){
ev.preventDefault();
var self = this;
if(!el.hasClass('active')){
this.sub(el).triggerAsync('show', function(){
self.sub(self.find(".active").removeClass("active")).hide();
el.addClass("active");
})
}
},
sub : function(el){
return $(el.find("a").attr("href"))
},
".tab default.show" : function(el){
el.show();
}
})
$("#tabs").tabs();
$("#second").bind("show",function(ev){
if(! $("#complete")[0].checked ){
ev.preventDefault();
}
})
});
</script>
</body>
</html>