Skip to content

Commit 8c94816

Browse files
author
Zeno Rocha
committed
Regenerate distribution files
1 parent 489b473 commit 8c94816

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

dist/jquery.github.js

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* jQuery Github - v0.3.2
2+
* jQuery Github - v0.3.3
33
* A jQuery plugin to display your Github Repositories.
44
* https://github.com/zenorocha/jquery-github/
55
*
6-
* Copyright (c) 2013
6+
* Copyright (c) 2014
77
* MIT License
88
*/
99
// -- Github Repository --------------------------------------------------------
@@ -99,14 +99,14 @@ Github.prototype.init = function () {
9999

100100
// Display or hide icons
101101
Github.prototype.displayIcons = function () {
102-
$iconStars = $( ".repo-stars" );
103-
$iconForks = $( ".repo-forks" );
104-
$iconIssues = $( ".repo-issues" );
105-
var options = this.options;
102+
var options = this.options,
103+
$iconStars = $( ".repo-stars" ),
104+
$iconForks = $( ".repo-forks" ),
105+
$iconIssues = $( ".repo-issues" );
106106

107107
$iconStars.css( "display", options.iconStars ? "inline-block" : "none" );
108108
$iconForks.css( "display", options.iconForks ? "inline-block" : "none" );
109-
$iconIssues.css( "display", options.iconIssues ? "inline-block" : none );
109+
$iconIssues.css( "display", options.iconIssues ? "inline-block" : "none" );
110110
};
111111

112112
// Request repositories from Github

dist/jquery.github.min.js

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

0 commit comments

Comments
 (0)