forked from posabsolute/jQuery-Validation-Engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
releases.html
47 lines (42 loc) · 1.46 KB
/
releases.html
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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js ie6 oldie" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js ie7 oldie" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js ie8 oldie" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<title>Release Notes</title>
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" href="css/releasenotes.plugin.css">
<script src="js/libs/jquery-1.7.1.min.js"></script>
<script src="js/libs/marked.js"></script>
<script src="js/releasenotes.js"></script>
<script>
$(document).ready(function() {
$("#releaseNotesContainer").releaseNotes({
milestonesShown : 10,
// If you want to show private repo
// You need to add repo credentials in api.php
phpApi : false,
phpApiPath : '/',
showDescription : true,
showComments : true,
// Used if phpAPI is false
repo : 'jQuery-Validation-Engine',
username : 'posabsolute'
});
});
</script>
</head>
<body>
<div id="websiteContainer">
<div class="containerRelease">
<h1>jQuery Validation Engine Release Notes</h1>
<div id="releaseNotesContainer" role="main"></div>
</div>
</div>
</body>
</html>