From dcbc6634f25706123077ed7787579ed338a102ed Mon Sep 17 00:00:00 2001 From: Adam Waldenberg Date: Sat, 7 Nov 2015 14:27:02 +0100 Subject: [PATCH] Changed "graphical glyphs" to solid arrows (#28). The $or; character was changed to $#x25bc;, while $and; was changed to $#x25b2. --- gitinspector/html/html.header | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/gitinspector/html/html.header b/gitinspector/html/html.header index 8ee7a0b..0c0230c 100644 --- a/gitinspector/html/html.header +++ b/gitinspector/html/html.header @@ -56,16 +56,16 @@ var parentIndex = $(this).index(); if (this.isReversed) {{ - $(this).append(""); + $(this).append(""); }} else {{ - $(this).append(""); + $(this).append(""); }} this.isReversed = !this.isReversed; }}); $("table#changes thead tr th:first-child, table#blame thead tr th:first-child").each(function() {{ this.isReversed = true; - $(this).append(""); + $(this).append(""); }}); $("table#changes tfoot tr td:first-child").filter(function() {{ @@ -73,16 +73,16 @@ return this.hiddenCount > 0; }}).each(function() {{ $(this).addClass("hoverable"); - this.innerHTML = "{show_minor_authors} (" + this.hiddenCount + ") ∨"; + this.innerHTML = "{show_minor_authors} (" + this.hiddenCount + ") ▼"; }}).click(function() {{ this.clicked = !this.clicked; if (this.clicked) {{ - this.innerHTML = "{hide_minor_authors} (" + this.hiddenCount + ") ∧"; + this.innerHTML = "{hide_minor_authors} (" + this.hiddenCount + ") ▲"; $(this).parent().parent().parent().find("tbody tr:empty").remove(); $(this).parent().parent().parent().find("tbody tr").show(); }} else {{ - this.innerHTML = "{show_minor_authors} (" + this.hiddenCount + ") ∨"; + this.innerHTML = "{show_minor_authors} (" + this.hiddenCount + ") ▼"; $(this).parent().parent().parent().find("tbody tr td:last-child").filter(function() {{ return parseFloat(this.innerHTML) < MINOR_AUTHOR_PERCENTAGE; }}).parent().each(function() {{ @@ -94,15 +94,15 @@ filterResponsibilities(); var hiddenResponsibilitiesCount = $("div#responsibilities div h3:hidden").length; if (hiddenResponsibilitiesCount > 0) {{ - $("div#responsibilities").prepend("
{show_minor_authors} (" + hiddenResponsibilitiesCount + ") ∨
"); + $("div#responsibilities").prepend("
{show_minor_authors} (" + hiddenResponsibilitiesCount + ") ▼
"); $("div#responsibilities div.button").click(function() {{ this.clicked = !this.clicked; if (this.clicked) {{ - this.innerHTML = "{hide_minor_authors} (" + hiddenResponsibilitiesCount + ") ∧"; + this.innerHTML = "{hide_minor_authors} (" + hiddenResponsibilitiesCount + ") ▲"; $("div#responsibilities div").show(); }} else {{ - this.innerHTML = "{show_minor_authors} (" + hiddenResponsibilitiesCount + ") ∨"; + this.innerHTML = "{show_minor_authors} (" + hiddenResponsibilitiesCount + ") ▼"; filterResponsibilities(); }} }}); @@ -112,15 +112,15 @@ filterTimeLine(); var hiddenTimelineCount = $("div#timeline table.git tbody tr:hidden").length; if (hiddenTimelineCount > 0) {{ - $("div#timeline").prepend("
{show_minor_rows} (" + hiddenTimelineCount + ") ∨
"); + $("div#timeline").prepend("
{show_minor_rows} (" + hiddenTimelineCount + ") ▼
"); $("div#timeline div.button").click(function() {{ this.clicked = !this.clicked; if (this.clicked) {{ - this.innerHTML = "{hide_minor_rows} (" + hiddenTimelineCount + ") ∧"; + this.innerHTML = "{hide_minor_rows} (" + hiddenTimelineCount + ") ▲"; $("div#timeline table.git tbody tr").show().each(colorRows); }} else {{ - this.innerHTML = "{show_minor_rows} (" + hiddenTimelineCount + ") ∨"; + this.innerHTML = "{show_minor_rows} (" + hiddenTimelineCount + ") ▼"; filterTimeLine(); }} }});