diff --git a/docs/examples.html b/docs/examples.html index bb4fccc3..b536500d 100644 --- a/docs/examples.html +++ b/docs/examples.html @@ -1042,22 +1042,21 @@ $.fn.select2.amd.require( function formatRepo (repo) { if (repo.loading) return repo.text; - var markup = '
' + - '
' + - '' + - '
' + - '
' + - '
' + - '
' + repo.full_name + '
' + - '
' + repo.forks_count + '
' + - '
' + repo.stargazers_count + '
' + - '
'; + var markup = "
" + + "
" + + "
" + + "
" + repo.full_name + "
"; - if (repo.description) { - markup += '
' + repo.description + '
'; - } + if (repo.description) { + markup += "
" + repo.description + "
"; + } - markup += '
'; + markup += "
" + + "
" + repo.forks_count + " Forks
" + + "
" + repo.stargazers_count + " Stars
" + + "
" + repo.watchers_count + " Watchers
" + + "
" + + "
"; return markup; }