Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
npm run check-branch
npm run lint
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [4.1.7] - 2025-10-26

### Fixed

- Removed a `console.log` from **updateSortableAriaLabel.ts** 🤦

## [4.1.6] - 2025-10-21

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

- First release

[4.1.7]: https://github.com/tofsjonas/sortable/releases/tag/4.1.7
[4.1.6]: https://github.com/tofsjonas/sortable/releases/tag/4.1.6
[4.1.5]: https://github.com/tofsjonas/sortable/releases/tag/4.1.5
[4.1.4]: https://github.com/tofsjonas/sortable/releases/tag/4.1.4
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/enhanceSortableAccessibility.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function updateSortableAriaLabel(element, default_direction) {
var current_direction = element.getAttribute("aria-sort"), new_direction = default_direction;
current_direction && (new_direction = current_direction === "descending" ? "ascending" : "descending"), aria_label = "Click to sort table by ".concat(header_text, " in ").concat(new_direction, " order");
}
element.setAttribute("aria-label", aria_label), element.setAttribute("title", aria_label), console.log("🚀 comment me out");
element.setAttribute("aria-label", aria_label);
}
function enhanceSortableAccessibility(tables) {
function handleKeyDown(event) {
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/enhanceSortableAccessibility.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esm/sortable.a11y.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esm/sortable.auto.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* sortable v4.1.6
* sortable
*
* https://www.npmjs.com/package/sortable-tablesort
* https://github.com/tofsjonas/sortable
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/sortable.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* sortable v4.1.6
* sortable
*
* https://www.npmjs.com/package/sortable-tablesort
* https://github.com/tofsjonas/sortable
Expand Down
2 changes: 1 addition & 1 deletion dist/sortable.a11y.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function updateSortableAriaLabel(element, default_direction) {
var current_direction = element.getAttribute("aria-sort"), new_direction = default_direction;
current_direction && (new_direction = current_direction === "descending" ? "ascending" : "descending"), aria_label = "Click to sort table by ".concat(header_text, " in ").concat(new_direction, " order");
}
element.setAttribute("aria-label", aria_label), element.setAttribute("title", aria_label), console.log("🚀 comment me out");
element.setAttribute("aria-label", aria_label);
}
function enhanceSortableAccessibility(tables) {
function handleKeyDown(event) {
Expand Down
2 changes: 1 addition & 1 deletion dist/sortable.a11y.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/sortable.auto.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading