Skip to content

Commit 0c55f2f

Browse files
committed
Source formatting
1 parent 3c174e1 commit 0c55f2f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -164,24 +164,24 @@ Let me know! Send a [tweet](http://twitter.com/zenorocha) or [pull request](http
164164

165165
**Prefer a non-jquery version with pure JavaScript?**
166166

167-
No problem, [@ricardobeat](https://github.com/ricardobeat) already did one. Check [his fork!](https://github.com/ricardobeat/github-repos)
167+
No problem, [@ricardobeat](https://github.com/ricardobeat) already did one. Check [his fork](https://github.com/ricardobeat/github-repos)!
168168

169169
**Prefer Zepto instead of jQuery?**
170170

171-
No problem, [@igorlima](https://github.com/igorlima) already did that. Check [demo/index-zepto.html](https://github.com/zenorocha/jquery-github/tree/master/demo/index-zepto.html)
171+
No problem, [@igorlima](https://github.com/igorlima) already did that. Check [demo/index-zepto.html](https://github.com/zenorocha/jquery-github/tree/master/demo/index-zepto.html).
172172

173173
## Contributing
174174

175-
Check [CONTRIBUTING.md](https://github.com/zenorocha/jquery-github/blob/master/CONTRIBUTING.md)
175+
Check [CONTRIBUTING.md](https://github.com/zenorocha/jquery-github/blob/master/CONTRIBUTING.md).
176176

177177
## History
178178

179179
Check [Release](https://github.com/zenorocha/jquery-github/releases) list.
180180

181181
## Credits
182182

183-
Built on top of [jQuery Boilerplate](http://jqueryboilerplate.com)
183+
Built on top of [jQuery Boilerplate](http://jqueryboilerplate.com).
184184

185185
## License
186186

187-
[MIT License](http://zenorocha.mit-license.org/)
187+
[MIT License](http://zenorocha.mit-license.org/) © Zeno Rocha

src/jquery.github.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
// -- Github Repository --------------------------------------------------------
22

33
function GithubRepo( repo ) {
4-
this.name = repo.name;
54
this.description = repo.description;
65
this.forks = repo.forks;
6+
this.name = repo.name;
7+
this.open_issues = repo.open_issues;
78
this.pushed_at = repo.pushed_at;
89
this.url = repo.url;
910
this.watchers = repo.watchers;
10-
this.open_issues = repo.open_issues;
1111
}
1212

1313
// Parses HTML template

0 commit comments

Comments
 (0)