Skip to content

Commit 7deb0dd

Browse files
committed
renaming the plugin
1 parent e23debd commit 7deb0dd

File tree

6 files changed

+31
-27
lines changed

6 files changed

+31
-27
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# jQuery Github Repos
22

3-
[![Github Repo Demonstration](http://f.cl.ly/items/0J1y0o0D461A0T1v1328/Screen%20Shot%202013-01-13%20at%207.32.55%20PM.png)](http://zenorocha.github.com/jquery-github-repos/)
3+
[![Github Repo Demonstration](http://f.cl.ly/items/0J1y0o0D461A0T1v1328/Screen%20Shot%202013-01-13%20at%207.32.55%20PM.png)](http://zenorocha.github.com/jquery-github/)
44

55
## Usage
66

@@ -26,12 +26,12 @@ Include plugin's CSS and JS:
2626
Call the plugin:
2727

2828
```javascript
29-
$('[data-repo]').githubRepos();
29+
$('[data-repo]').github();
3030
```
3131

3232
And that's it \o/
3333

34-
[Check the full example here](https://github.com/zenorocha/jquery-github-repos/blob/master/demo/index.html)
34+
[Check the full example here](https://github.com/zenorocha/jquery-github/blob/master/demo/index.html)
3535

3636
## Forks
3737

@@ -63,6 +63,10 @@ Prefer a non-jquery version with pure JavaScript? No problem, [@ricardobeat](htt
6363
* v0.1 September 10, 2012
6464
* Initial commit
6565

66+
## Credits
67+
68+
Built on top of [jQuery Boilerplate](http://jqueryboilerplate.com)
69+
6670
## License
6771

6872
[MIT License](http://zenorocha.mit-license.org/)

demo/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44

55
<meta charset="UTF-8">
6-
<title>jQuery Github Repos</title>
6+
<title>jQuery Github</title>
77

88
<!-- Plugin CSS -->
99
<link rel="stylesheet" href="../assets/base.css">
@@ -14,19 +14,19 @@
1414
</head>
1515
<body>
1616

17-
<a href="https://github.com/zenorocha/jquery-github-repos">
17+
<a href="https://github.com/zenorocha/jquery-github">
1818
<img class="github-ribbon" src="img/github-ribbon.png" alt="Fork me on GitHub">
1919
</a>
2020

2121
<div class="title">
22-
<h1>jQuery Github Repos</h1>
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>
22+
<h1>jQuery Github</h1>
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">repository</a>.</p>
2424
</div>
2525

2626
<div class="projects">
2727
<div data-repo="jquery-boilerplate/boilerplate"></div>
2828
<div data-repo="zenorocha/diveintohtml5"></div>
29-
<div data-repo="zenorocha/jquery-github-repos"></div>
29+
<div data-repo="zenorocha/jquery-github"></div>
3030
<div data-repo="zenorocha/hub.me"></div>
3131
</div>
3232

@@ -35,10 +35,10 @@ <h1>jQuery Github Repos</h1>
3535
<img id="github-logo" src="img/github-cat.png" alt="Github Cat" />
3636

3737
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
38-
<script src="../jquery.github.repos.min.js"></script>
38+
<script src="../jquery.github.min.js"></script>
3939

4040
<script>
41-
$('[data-repo]').githubRepos();
41+
$('[data-repo]').github();
4242
</script>
4343

4444
</body>

github.jquery.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@
2525
"url": "http://zenorocha.mit-license.org/"
2626
}
2727
],
28-
"bugs": "https://github.com/zenorocha/jquery-github-repos/issues",
29-
"homepage": "https://github.com/zenorocha/jquery-github-repos/",
30-
"docs": "https://github.com/zenorocha/jquery-github-repos#readme",
31-
"download": "http://code.jquery.com/#github",
28+
"bugs": "https://github.com/zenorocha/jquery-github/issues",
29+
"homepage": "https://github.com/zenorocha/jquery-github/",
30+
"docs": "https://github.com/zenorocha/jquery-github#readme",
31+
"download": "https://github.com/zenorocha/jquery-github/archive/master.zip",
3232
"dependencies": {
3333
"jquery": ">=1.9"
3434
}

jquery.github.repos.js renamed to jquery.github.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
2-
* jQuery Github Repos v0.2.2
2+
* jQuery Github v0.2.2
33
* A jQuery plugin to display your Github Repositories.
4-
* http://git.io/3A1RMg
4+
* http://git.io/WUV4_Q
55
*
66
* Zeno Rocha
77
* MIT License
@@ -21,7 +21,7 @@
2121
// minified (especially when both are regularly referenced in your plugin).
2222

2323
// Create the defaults once
24-
var pluginName = 'githubRepos',
24+
var pluginName = 'github',
2525
document = window.document,
2626
defaults = {
2727
propertyName: "value"

jquery.github.min.js

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jquery.github.repos.min.js

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)