From 2dcf9a93e2640d29e69458ec5eb22b160756039d Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Wed, 18 Sep 2019 21:41:24 +0200 Subject: [PATCH] ready for release v1.3.0 * add arrow to active colum header * update docu --- sortt.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sortt.js b/sortt.js index fa36386..cd3c2fb 100644 --- a/sortt.js +++ b/sortt.js @@ -4,7 +4,7 @@ @License MIT @Author 6543 @Repository https://gitea.com/6543/gitea_sortt - @Version 1.2.1 + @Version 1.3.0 */ @@ -87,7 +87,7 @@ if(!window.jQuery) { console.log("sortt.js: ERROR no jQuery found!"); } else { - //use JQuery to bind event on each with a "data-sortt" attribute + //use JQuery to go throu each table header with "data-sortt" attribute $('th').each(function() { //if data attribute sortt is set if ($(this)[0].dataset.sortt) { @@ -108,4 +108,5 @@ if(!window.jQuery) { } } }); + }