mirror of
https://github.com/moparisthebest/www.moparscape.org
synced 2024-11-04 16:35:08 -05:00
Merge pull request #914 from rixth/master
Escape github repo descriptions, as they may contain HTML.
This commit is contained in:
commit
0a2fb6c4d8
@ -1,9 +1,12 @@
|
|||||||
var github = (function(){
|
var github = (function(){
|
||||||
|
function escapeHtml(str) {
|
||||||
|
return $('<div/>').text(str).html();
|
||||||
|
}
|
||||||
function render(target, repos){
|
function render(target, repos){
|
||||||
var i = 0, fragment = '', t = $(target)[0];
|
var i = 0, fragment = '', t = $(target)[0];
|
||||||
|
|
||||||
for(i = 0; i < repos.length; i++) {
|
for(i = 0; i < repos.length; i++) {
|
||||||
fragment += '<li><a href="'+repos[i].html_url+'">'+repos[i].name+'</a><p>'+(repos[i].description||'')+'</p></li>';
|
fragment += '<li><a href="'+repos[i].html_url+'">'+repos[i].name+'</a><p>'+escapeHtml(repos[i].description||'')+'</p></li>';
|
||||||
}
|
}
|
||||||
t.innerHTML = fragment;
|
t.innerHTML = fragment;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user