FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
SWJTUopensource.github.io/javascripts/github.js at master · thinkclaves/SWJTUopensource.github.io · GitHub
thinkclaves
/
SWJTUopensource.github.io
Public
forked from
SWJTUopensource/SWJTUopensource.github.io
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
SWJTUopensource.github.io
/
javascripts
/
github.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
32 lines (31 loc) · 1.09 KB
Breadcrumbs
SWJTUopensource.github.io
/
javascripts
/
github.js
Copy path
File metadata and controls
executable file
·
32 lines (31 loc) · 1.09 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
var
github
=
(
function
(
)
{
function
escapeHtml
(
str
)
{
return
$
(
'<div/>'
)
.
text
(
str
)
.
html
(
)
;
}
function
render
(
target
,
repos
)
{
var
i
=
0
,
fragment
=
''
,
t
=
$
(
target
)
[
0
]
;
for
(
i
=
0
;
i
<
repos
.
length
;
i
++
)
{
fragment
+=
'<li><a href="'
+
repos
[
i
]
.
html_url
+
'">'
+
repos
[
i
]
.
name
+
'</a><p>'
+
escapeHtml
(
repos
[
i
]
.
description
||
''
)
+
'</p></li>'
;
}
t
.
innerHTML
=
fragment
;
}
return
{
showRepos
:
function
(
options
)
{
$
.
ajax
(
{
url
:
"https://api.github.com/users/"
+
options
.
user
+
"/repos?sort=pushed&callback=?"
,
dataType
:
'jsonp'
,
error
:
function
(
err
)
{
$
(
options
.
target
+
' li.loading'
)
.
addClass
(
'error'
)
.
text
(
"Error loading feed"
)
;
}
,
success
:
function
(
data
)
{
var
repos
=
[
]
;
if
(
!
data
||
!
data
.
data
)
{
return
;
}
for
(
var
i
=
0
;
i
<
data
.
data
.
length
;
i
++
)
{
if
(
options
.
skip_forks
&&
data
.
data
[
i
]
.
fork
)
{
continue
;
}
repos
.
push
(
data
.
data
[
i
]
)
;
}
if
(
options
.
count
)
{
repos
.
splice
(
options
.
count
)
;
}
render
(
options
.
target
,
repos
)
;
}
}
)
;
}
}
;
}
)
(
)
;
Back
|
FazBrowse Home
|
New Git URL