Personal website https://benkurtovic.com/
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

66 строки
1.9 KiB

  1. function fix_tag_links() {
  2. $(".post-tag").attr("href", function() {
  3. return "/#" + encodeURIComponent($(this).text());
  4. });
  5. }
  6. function load_tag_filters() {
  7. var filter_posts = function(filter) {
  8. var num_selected = $(".tag-selected").length;
  9. if (num_selected == 0 || num_selected == $(".tag").length)
  10. $("#post-list li").show();
  11. else {
  12. $("#post-list li").hide();
  13. $("#post-list li").each(function() {
  14. var tags = $(this).data("tags").split("|");
  15. for (var t in tags) {
  16. if ($.inArray(tags[t], filter) != -1) {
  17. $(this).show();
  18. return;
  19. }
  20. }
  21. });
  22. }
  23. }
  24. if (window.location.hash) {
  25. var tags = decodeURIComponent(window.location.hash.substr(1)).split("|");
  26. $(".tag").each(function() {
  27. if ($.inArray($(this).data("tag"), tags) != -1)
  28. $(this).toggleClass("tag-selected");
  29. });
  30. filter_posts(tags);
  31. }
  32. $(".tag").click(function() {
  33. $(this).toggleClass("tag-selected");
  34. var tags = [];
  35. $(".tag-selected").each(function() {
  36. tags.push($(this).data("tag"))
  37. });
  38. if (tags.length > 0)
  39. window.location.hash = encodeURIComponent(tags.join("|"));
  40. else
  41. history.pushState("", "", window.location.pathname);
  42. filter_posts(tags);
  43. });
  44. }
  45. function load_paragraph_links() {
  46. $("#post").find("h1, h2, h3, h4, h5, h6").hover(function() {
  47. $(this).append($("<a>")
  48. .attr("href", "#" + this.id)
  49. .attr("class", "para-link")
  50. .text("¶"));
  51. }, function() {
  52. $(this).find(".para-link").remove();
  53. });
  54. }
  55. $(document).ready(function() {
  56. fix_tag_links();
  57. load_tag_filters();
  58. load_paragraph_links();
  59. });