mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
add customSelect
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
/// <reference path="../jquery/jquery.d.ts" />
|
||||
/// <reference path="jquery.customSelect.d.ts" />
|
||||
|
||||
class CustomSelectOptions implements JQueryCustomSelectOption {
|
||||
"customClass": string;
|
||||
"mapClass": boolean;
|
||||
"mapStyle": boolean;
|
||||
}
|
||||
|
||||
var customSelectOptions = new CustomSelectOptions();
|
||||
|
||||
customSelectOptions.customClass = "myOwnClassName";
|
||||
customSelectOptions.mapClass = true;
|
||||
customSelectOptions.mapStyle = true;
|
||||
|
||||
$('select').customSelect(customSelectOptions);
|
||||
Reference in New Issue
Block a user