diff --git a/neoease/js/neoease.js b/neoease/js/neoease.js index 03f003e..61d90f9 100644 --- a/neoease/js/neoease.js +++ b/neoease/js/neoease.js @@ -1,180 +1,3 @@ -<<<<<<< HEAD -/* - * Copyright (c) 2009, 2010, 2011, 2012, B3log Team - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -/** - * @fileoverview neoease js. - * - * @author Liyuan Li - * @version 1.0.0.8, Sep 6, 2012 - */ -var goTop = function (acceleration) { - acceleration = acceleration || 0.1; - - var y = $(window).scrollTop(); - var speed = 1 + acceleration; - window.scrollTo(0, Math.floor(y / speed)); - - if (y > 0) { - var invokeFunction = "goTop(" + acceleration + ")"; - window.setTimeout(invokeFunction, 16); - } -}; - -var collapseArchive = function (it, year) { - var tag = true; - if (it.className === "collapse-ico") { - it.className = "expand-ico"; - tag = false; - } else { - it.className = "collapse-ico"; - } - - $("#archiveSide li").each(function () { - var $this = $(this); - // hide other year month archives - if ($this.data("year") === year) { - if (tag) { - $(this).show(); - } else { - $(this).hide(); - } - } - }); -}; - -var getArticle = function (it, id) { - var $abstract = $("#abstract" + id), - $content = $("#content" + id); - - if ($content.html() === "") { - $.ajax({ - url: "/get-article-content?id=" + id, - type: "GET", - dataType: "html", - beforeSend: function () { - $abstract.css("background", - "url(/skins/neoease/images/ajax-loader.gif) no-repeat scroll center center transparent"); - }, - success: function(result, textStatus){ - it.className = "collapse-ico"; - $content.html(result); - $abstract.hide().css("background", "none"); - $content.fadeIn("slow"); - } - }); - } else { - if (it.className === "expand-ico") { - $abstract.hide(); - $content.fadeIn(); - it.className = "collapse-ico"; - } else { - $content.hide(); - $abstract.fadeIn(); - it.className = "expand-ico"; - } - } - - return false; -}; - -var goTranslate = function () { - window.open("http://translate.google.com/translate?sl=auto&tl=auto&u=" + location.href); -}; - -(function () { - // go top icon show or hide - $(window).scroll(function () { - var y = $(window).scrollTop(); - - if (y > 182) { - var bodyH = $(window).height(); - var top = y + bodyH - 21; - if ($("body").height() - 58 <= y + bodyH) { - top = $(".footer").offset().top - 21; - } - $("#goTop").fadeIn("slow").css("top", top); - } else { - $("#goTop").hide(); - } - }); - - - // archive - var currentYear = (new Date()).getFullYear(), - year = currentYear; - $("#archiveSide li").each(function (i) { - var $this = $(this); - - // hide other year month archives - if ($this.data("year") !== currentYear) { - $(this).hide(); - } - - // append year archive - if (year !== $this.data("year")) { - year = $this.data("year"); - $this.before("