Skip to content

Commit 4a3be13

Browse files
authored
Removed a console.log from updateSortableAriaLabel.ts 🤦 (#92)
1 parent fef2bcb commit 4a3be13

21 files changed

+40
-32
lines changed

‎.husky/pre-commit‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
npm run check-branch
2+
npm run lint

‎CHANGELOG.md‎

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file.
77
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
88
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [4.1.7] - 2025-10-26
11+
12+
### Fixed
13+
14+
- Removed a `console.log` from **updateSortableAriaLabel.ts** 🤦
15+
1016
## [4.1.6] - 2025-10-21
1117

1218
### Fixed
@@ -208,6 +214,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
208214

209215
- First release
210216

217+
[4.1.7]: https://github.com/tofsjonas/sortable/releases/tag/4.1.7
211218
[4.1.6]: https://github.com/tofsjonas/sortable/releases/tag/4.1.6
212219
[4.1.5]: https://github.com/tofsjonas/sortable/releases/tag/4.1.5
213220
[4.1.4]: https://github.com/tofsjonas/sortable/releases/tag/4.1.4

‎dist/esm/enhanceSortableAccessibility.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function updateSortableAriaLabel(element, default_direction) {
44
var current_direction = element.getAttribute("aria-sort"), new_direction = default_direction;
55
current_direction && (new_direction = current_direction === "descending" ? "ascending" : "descending"), aria_label = "Click to sort table by ".concat(header_text, " in ").concat(new_direction, " order");
66
}
7-
element.setAttribute("aria-label", aria_label), element.setAttribute("title", aria_label), console.log("🚀 comment me out");
7+
element.setAttribute("aria-label", aria_label);
88
}
99
function enhanceSortableAccessibility(tables) {
1010
function handleKeyDown(event) {

‎dist/esm/enhanceSortableAccessibility.min.js‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/esm/sortable.a11y.min.js‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/esm/sortable.auto.d.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* sortable v4.1.6
2+
* sortable
33
*
44
* https://www.npmjs.com/package/sortable-tablesort
55
* https://github.com/tofsjonas/sortable

‎dist/esm/sortable.d.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* sortable v4.1.6
2+
* sortable
33
*
44
* https://www.npmjs.com/package/sortable-tablesort
55
* https://github.com/tofsjonas/sortable

‎dist/sortable.a11y.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function updateSortableAriaLabel(element, default_direction) {
44
var current_direction = element.getAttribute("aria-sort"), new_direction = default_direction;
55
current_direction && (new_direction = current_direction === "descending" ? "ascending" : "descending"), aria_label = "Click to sort table by ".concat(header_text, " in ").concat(new_direction, " order");
66
}
7-
element.setAttribute("aria-label", aria_label), element.setAttribute("title", aria_label), console.log("🚀 comment me out");
7+
element.setAttribute("aria-label", aria_label);
88
}
99
function enhanceSortableAccessibility(tables) {
1010
function handleKeyDown(event) {

‎dist/sortable.a11y.min.js‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/sortable.auto.js‎

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)