mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Create index.d.ts * Create LICENSE * Create README.md * Update README.md * Create package.json * Delete LICENSE * Delete README.md * Delete package.json * Create datatables.net-fixedcolumns-tests.ts * Create tslint.json * Create tsconfig.json * changes after tslint * formatting * formatting * formatting * correct return types add deprecation comments * Type definitions for datatables.net-keytable
18 lines
477 B
TypeScript
18 lines
477 B
TypeScript
$(document).ready(() => {
|
|
const config: DataTables.Settings = {
|
|
// KeyTable extension options
|
|
keys: {
|
|
blurable: true,
|
|
className: "focusClass",
|
|
clipboard: false,
|
|
columns: ":not(:first-child)",
|
|
editOnFocus: false,
|
|
focus: ":eq(0)",
|
|
tabIndex: 2,
|
|
keys: [ "\t".charCodeAt(0) ],
|
|
clipboardOrthogonal: 'export',
|
|
editor: null
|
|
}
|
|
};
|
|
});
|