This commit is contained in:
Van
2019-08-02 22:16:31 +08:00
parent 1f94084f11
commit 64085edc97
54 changed files with 482 additions and 144 deletions

View File

@@ -19,7 +19,7 @@
* @fileoverview timeline js.
*
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
* @version 1.0.1.2, Jun 6, 2013
* @version 1.1.0.0, Aug 2, 2019
*/
var timeline = {
_COLHA: 0,
@@ -249,14 +249,15 @@ var timeline = {
+ Label.servePath + article.articlePermalink + '">'
+ article.articleTitle + '</a>';
if (article.hasUpdated) {
articlesHTML += '<sup>' + Label.updatedLabel + '</sup>';
}
if (article.articlePutTop) {
articlesHTML += '<sup>' + Label.topArticleLabel + '</sup>';
}
if (article.hasUpdated) {
articlesHTML += '<sup><a href="'
+ Label.servePath + article.articlePermalink + '">' + Label.updatedLabel + '</a></sup>';
}
articlesHTML += '</h3><p>' + article.articleAbstract + '</p>'
+ '<span class="ico-tags ico" title="' + Label.tagLabel + '">';

File diff suppressed because one or more lines are too long