96 lines
3.4 KiB
JavaScript
96 lines
3.4 KiB
JavaScript
/*
|
|
* Solo - A small and beautiful blogging system written in Java.
|
|
* Copyright (c) 2010-2019, b3log.org & hacpai.com
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
$("#share ul").css({
|
|
"display": "none",
|
|
"top": "-225px",
|
|
"opacity": "0"
|
|
});
|
|
$(".commentlist li cite a,.outter a").attr("href",
|
|
function() {
|
|
var domain_const = "{{blog.domain}}".substring(0, 7) + "";
|
|
return this.href.replace(domain_const, "")//your domain#####################
|
|
});
|
|
$(".commentlist li cite a[href='http://']").each(function() {
|
|
$(this).replaceWith("<span style='color:#444;border-bottom:1px dotted #aaa'>" + $(this).text() + "</span>")
|
|
});
|
|
$(document).ready(function() {
|
|
//$("#header").html($("#headerf").html());
|
|
//$(".timeta").html($(".meta").html());
|
|
|
|
// set selected navi
|
|
$("#header-navi li").each(function (i) {
|
|
if (i < $("#header-navi li").length) {
|
|
var $it = $(this),
|
|
locationURL = window.location.pathname + window.location.search;
|
|
if (i === 0 && (locationURL === "/")) {
|
|
$it.addClass("current_page_item");
|
|
return;
|
|
}
|
|
if (locationURL.indexOf($it.find("a").attr("href")) > -1 && i !== 0) {
|
|
$it.addClass("current_page_item");
|
|
}
|
|
}
|
|
});
|
|
|
|
if ($("input#author:has[value]").length > 0) {
|
|
$("div.friendly").css("display", "none");
|
|
$(".authorgra").css("display", "block");
|
|
var A = '<span style="padding:0 5px;font:bold 10px verdana;color:#888;cursor:pointer;letter-spacing:0" class="infoeditor">(Edit)</span>';
|
|
$("div#respond").append(A);
|
|
$(".infoeditor").toggle(function() {
|
|
$(".friendly").fadeIn();
|
|
$(".authorgra").css("display", "none")
|
|
},
|
|
function() {
|
|
$(".friendly").css("display", "none");
|
|
$(".authorgra").fadeIn()
|
|
})
|
|
}
|
|
$(".twitter").click(function() {
|
|
window.open("http://twitter.com/ansenorg");
|
|
return false
|
|
})
|
|
Util.setTopBar();
|
|
})
|
|
function hidetoolbar(){
|
|
$("#wgToolBar").slideUp(600,function(){
|
|
$("#showtoolbar").slideDown(600)
|
|
})
|
|
}
|
|
function showtoolbar(){
|
|
$("#showtoolbar").slideUp(600,function(){
|
|
$("#wgToolBar").slideDown(600)
|
|
})
|
|
}
|
|
// 点击暧昧文章
|
|
var showRelatedul = function (id, label, tags) {
|
|
var $relatedul = $("#relatedul");
|
|
if ($relatedul.hasClass("hidden")) {
|
|
if ($("#randomArticles").html() === "") {
|
|
page.loadRandomArticles();
|
|
page.loadRelevantArticles(id, label);
|
|
if (page.tips.externalRelevantArticlesDisplayCount !== 0) {
|
|
page.loadExternalRelevantArticles(tags);
|
|
}
|
|
}
|
|
$relatedul.slideDown().removeClass("hidden");
|
|
} else {
|
|
$relatedul.slideUp().addClass("hidden");
|
|
}
|
|
}
|
|
var common = new Common(); |