mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
323 B
TypeScript
14 lines
323 B
TypeScript
$(document).ready(() => {
|
|
const config: DataTables.Settings = {
|
|
// Select extension options
|
|
select: {
|
|
blurable: true,
|
|
className: "selectClass",
|
|
info: true,
|
|
items: "row",
|
|
selector: "td:first-child",
|
|
style: "os"
|
|
}
|
|
};
|
|
});
|