add customSelect

This commit is contained in:
tomato360
2014-09-05 17:13:53 +09:00
parent 029781c46f
commit db5ca82c65
3 changed files with 33 additions and 0 deletions
@@ -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);