Skip to content

Commit 6468064

Browse files
committed
546faf027caea51584622fb222041d46ac37113c New: -event key-prefocus which can be used to cancel a focus action
Sync to source repo @546faf027caea51584622fb222041d46ac37113c
1 parent 0a88b68 commit 6468064

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

datatables.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
],
1616
"src-repo": "http://github.com/DataTables/KeyTable",
1717
"last-tag": "2.8.2",
18-
"last-sync": "88c6920483698f87607c6668f883e8013a95b05f"
18+
"last-sync": "546faf027caea51584622fb222041d46ac37113c"
1919
}

js/keyTable.bootstrap.min.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/*! Bootstrap 3 styling wrapper for KeyTable
22
* © SpryMedia Ltd - datatables.net/license
33
*/
4-
import $ from"jquery";import DataTable from"datatables.net-bs";import KeyTable from"datatables.net-keytable";export default DataTable;
4+
import jQuery from"jquery";import DataTable from"datatables.net-bs";import KeyTable from"datatables.net-keytable";let $=jQuery;export default DataTable;

js/keyTable.bootstrap.mjs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@
22
* © SpryMedia Ltd - datatables.net/license
33
*/
44

5-
import $ from 'jquery';
5+
import jQuery from 'jquery';
66
import DataTable from 'datatables.net-bs';
77
import KeyTable from 'datatables.net-keytable';
88

9+
// Allow reassignment of the $ variable
10+
let $ = jQuery;
11+
912

1013

1114
export default DataTable;

0 commit comments

Comments
 (0)