Skip to content

Commit 49eab70

Browse files
committed
changing project's name zenorocha#1
1 parent 27778f5 commit 49eab70

File tree

3 files changed

+19
-21
lines changed

3 files changed

+19
-21
lines changed

assets/base.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.github-widget:nth-child(even) .github-box{
1+
.github-repos:nth-child(even) .github-box{
22
margin-right:0 !important
33
}
44

demo/index.html

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -14,33 +14,31 @@
1414
</head>
1515
<body>
1616

17+
<a href="https://github.com/zenorocha/github-project-repos">
18+
<img class="github-ribbon" src="img/github-ribbon.png" alt="Fork me on GitHub">
19+
</a>
20+
1721
<div class="title">
1822
<h1>jQuery Github Repos</h1>
19-
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
20-
tempor<br> incididunt ut labore et dolore
21-
magna aliqua. Ut enim ad minim veniam
22-
</p>
23+
<p>A jQuery plugin to display your favorite Github Repositories.<br>For more informations, visit our <a href="https://github.com/zenorocha/jquery-github-repos">repository</a>.</p>
2324
</div>
2425

2526
<div class="projects">
26-
27-
<div class="github-widget" data-repo="jquery-boilerplate/boilerplate"></div>
28-
<div class="github-widget" data-repo="zenorocha/diveintohtml5"></div>
29-
<div class="github-widget" data-repo="zenorocha/talks"></div>
30-
<div class="github-widget" data-repo="zenorocha/hub.me"></div>
27+
<div class="github-repos" data-repo="jquery-boilerplate/boilerplate"></div>
28+
<div class="github-repos" data-repo="zenorocha/diveintohtml5"></div>
29+
<div class="github-repos" data-repo="zenorocha/jquery-github-repos"></div>
30+
<div class="github-repos" data-repo="zenorocha/hub.me"></div>
3131
</div>
3232

33-
<img id="github-logo" src="img/github-cat.png" alt="Github Cat" />
33+
<p class="credits">Made with love by <a href="http://zenorocha.com">Zeno Rocha</a>.</p>
3434

35-
<a href="https://github.com/zenorocha/github-project-repos">
36-
<img class="github-ribbon" src="img/github-ribbon.png" alt="Fork me on GitHub">
37-
</a>
35+
<img id="github-logo" src="img/github-cat.png" alt="Github Cat" />
3836

3937
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
40-
<script src="../jquery.github.repos.js"></script>
38+
<script src="../jquery.github.repos.min.js"></script>
4139

4240
<script>
43-
$('.github-widget').githubWidget();
41+
$('.github-repos').githubRepos();
4442
</script>
4543

4644
</body>

jquery.github.repos.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
2-
* Project:
3-
* Description:
4-
* Author:
5-
* License:
2+
* Project: jQuery Github Repos
3+
* Description: A jQuery plugin to display your Github Repositories.
4+
* Author: Zeno Rocha
5+
* License: MIT
66
*/
77

88
// the semi-colon before function invocation is a safety net against concatenated
@@ -19,7 +19,7 @@
1919
// minified (especially when both are regularly referenced in your plugin).
2020

2121
// Create the defaults once
22-
var pluginName = 'githubWidget',
22+
var pluginName = 'githubRepos',
2323
document = window.document,
2424
defaults = {
2525
propertyName: "value"

0 commit comments

Comments
 (0)