Skip to content

Commit d5acc38

Browse files
committed
updating to v0.2.5
1 parent c44cf71 commit d5acc38

File tree

2 files changed

+10
-12
lines changed

2 files changed

+10
-12
lines changed

js/jquery.github.js

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* jQuery Github v0.2.2
2+
* jQuery Github - v0.2.5
33
* A jQuery plugin to display your Github Repositories.
4-
* http://git.io/WUV4_Q
5-
*
6-
* Zeno Rocha
4+
* https://github.com/zenorocha/jquery-github/
5+
6+
* Copyright (c) 2013
77
* MIT License
88
*/
99

@@ -32,7 +32,6 @@
3232
this.element = element;
3333
this.$container = $(element);
3434
this.repo = this.$container.attr("data-repo");
35-
this.cached;
3635

3736
// jQuery has an extend method which merges the contents of two or
3837
// more objects, storing the result in the first object. The first object
@@ -56,7 +55,7 @@
5655
cached = sessionStorage.getItem('gh-repos:' + this.repo);
5756
}
5857

59-
if (cached != null) {
58+
if (cached !== null) {
6059
self.applyTemplate(JSON.parse(cached));
6160
}
6261
else {

js/jquery.github.min.js

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

0 commit comments

Comments
 (0)