forked from bitovi/jquerypp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.html
More file actions
91 lines (82 loc) · 2 KB
/
default.html
File metadata and controls
91 lines (82 loc) · 2 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
89
90
91
<!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='../../node_modules/steal/steal.js' main='@empty'></script>
<script type='text/javascript'>
steal('jquerypp/event/default',function($){
var sub = function(el){
return $(el.find("a").attr("href"))
};
$.fn.tabs = function(){
this.each(function(){
var ul = $(this);
ul.find("li:first").addClass('active');
ul.find(".tab:gt(0)").hide();
ul.on("click","li", function( ev){
var el = $(this);
ev.preventDefault();
var self = this;
if(!el.hasClass('active')){
sub(el).triggerAsync('show', function(){
sub(ul.find(".active").removeClass("active")).hide();
el.addClass("active");
});
}
}).on("default.show",".tab", function(){
$(this).show();
});
});
};
$("#tabs").tabs();
$("#second").bind("show",function(ev){
if(! $("#complete")[0].checked ){
ev.preventDefault();
}
});
});
</script>
</body>
</html>