mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-28 16:45:10 +08:00
18 lines
405 B
TypeScript
18 lines
405 B
TypeScript
/// <reference types="jquery" />
|
|
/// <reference types="jquery.dataTables" />
|
|
|
|
$(document).ready(function() {
|
|
|
|
var config: DataTables.Settings = {
|
|
// Select extension options
|
|
select: {
|
|
blurable: true,
|
|
className: "selectClass",
|
|
info: true,
|
|
items: "row",
|
|
selector: "td:first-child",
|
|
style: "os"
|
|
}
|
|
};
|
|
});
|