blob: b14ecf9fb70fc783e7c99d752c8981d2f6ef4397 (
plain)
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
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Multiple Select</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<meta content="Multiple Select" property="og:title">
<meta content="Multiple select is a jQuery plugin to select multiple elements with checkboxes :)." name="description">
<!-- css -->
<link rel="stylesheet" href="css/base.css" />
<script src="assets/jquery.min.js"></script>
<script src="assets/es5-shim.min.js"></script>
<!-- Flatdoc -->
<script src="assets/flatdoc/legacy.js"></script>
<script src="assets/flatdoc/flatdoc.js"></script>
<!-- Flatdoc theme -->
<link href="assets/flatdoc/theme-white/style.css" rel="stylesheet">
<script src="assets/flatdoc/theme-white/script.js"></script>
<!-- Multiple Select -->
<link href="../multiple-select.css" rel="stylesheet" />
<script src="../multiple-select.js"></script>
<!--[if lt IE 9]>
<script src="assets/html5shiv.js"></script>
<script src="assets/respond.min.js"></script>
<![endif]-->
<script type="text/javascript">
if (window!=top) // 判断当前的window对象是否是top对象
top.location.href = window.location.href; // 如果不是,将top对象的网址自动导向被嵌入网页的网址
</script>
<!-- js -->
<script src="js/index.js"></script>
</head>
<body role="flatdoc">
<div class="header">
<div class="left">
<h1>Multiple Select</h1>
<ul>
<li><a href="https://github.com/wenzhixin/multiple-select">View on GitHub</a></li>
<li><a href="https://github.com/wenzhixin/multiple-select/issues">Issues</a></li>
<li><a href="index.html">English</a></li>
<li><a href="index.html?locale=zh_CN">Chinese</a></li>
</ul>
</div>
<div class="right">
<!-- GitHub buttons: see http://ghbtns.com -->
<iframe src="http://ghbtns.com/github-btn.html?user=wenzhixin&repo=multiple-select&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<iframe src="http://ghbtns.com/github-btn.html?user=wenzhixin&repo=multiple-select&type=fork&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="95" height="20"></iframe>
<iframe src="http://ghbtns.com/github-btn.html?user=wenzhixin&type=follow&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="175" height="20"></iframe>
</div>
</div>
<div class="content-root">
<div class="menubar">
<div class="section">
<a class="big button" href="https://github.com/wenzhixin/multiple-select" target="_blank">Download</a>
</div>
<div class="menu section" role="flatdoc-menu"></div>
</div>
<div role="flatdoc-content" class="content"></div>
</div>
<script src="//wenzhixin.net.cn/js/analytics.js"></script>
</body>
</html>
|