Skip to content

Commit

Permalink
Source formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
zenorocha committed Oct 5, 2013
1 parent 3c174e1 commit 0c55f2f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,24 +164,24 @@ Let me know! Send a [tweet](http://twitter.com/zenorocha) or [pull request](http

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

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

**Prefer Zepto instead of jQuery?**

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)
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).

## Contributing

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

## History

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

## Credits

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

## License

[MIT License](http://zenorocha.mit-license.org/)
[MIT License](http://zenorocha.mit-license.org/) © Zeno Rocha
4 changes: 2 additions & 2 deletions src/jquery.github.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// -- Github Repository --------------------------------------------------------

function GithubRepo( repo ) {
this.name = repo.name;
this.description = repo.description;
this.forks = repo.forks;
this.name = repo.name;
this.open_issues = repo.open_issues;
this.pushed_at = repo.pushed_at;
this.url = repo.url;
this.watchers = repo.watchers;
this.open_issues = repo.open_issues;
}

// Parses HTML template
Expand Down

0 comments on commit 0c55f2f

Please sign in to comment.