-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
61 lines (59 loc) · 2.51 KB
/
index.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>github-changelog</title>
<meta name="description" content="Use GitHub issues to communicate app updates directly to your customers.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/demo.css" />
<script src="js/jquery-1.11.1.min.js"></script>
<script src="js/changelog.js"></script>
<script>
$(function() {
var $demoChangelog = $('.demo-changelog');
$demoChangelog.changelog({
githubRepo: 'uberVU/github-changelog-playground',
githubLabels: []
});
$('.demo-button').on('click', function(e) {
e.stopPropagation();
$demoChangelog.changelog('checkForUpdates');
});
});
</script>
</head>
<body>
<!-- GitHub Ribbon -->
<a class="github-ribbon" href="https://github.com/uberVU/github-changelog">
<img src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png">
</a>
<!-- Demo -->
<div class="main">
<header>
<h1><a href="https://github.com/uberVU/github-changelog">github-changelog</a></h1>
<span>Use GitHub issues to communicate app updates directly to your customers.</span>
</header>
<div class="steps">
<h2>See it in action</h2>
<h3>Just follow these simple steps!</h3>
<ul>
<li><strong class="step-label">Step 1:</strong> Go to <a href="https://github.com/uberVU/github-changelog-playground/issues" target="_blank">GitHub</a> and create a dummy issue.</li>
<li><strong class="step-label">Step 2:</strong> Close the issue.</li>
<li><strong class="step-label">Step 3:</strong> Return here and press the <strong>Check For Updates</strong> button.</li>
</ul>
</div>
<div class="demo">
<div class="demo-changelog"></div>
<div class="demo-footer">
<button class="github-changelog-btn demo-button">Check For Updates</button>
</div>
</div>
<div class="demo-image">
<h2>See the flow</h2>
<h3>This is how will look when you have everything set up</h3>
<img src="https://dl.dropboxusercontent.com/u/42934143/images/demos/changelog-demo4-gif.gif" />
</div>
</div>
</body>
</html>