14 строки
401 B
JavaScript
14 строки
401 B
JavaScript
|
var TabComponent;
|
||
|
(function (TabComponent) {
|
||
|
$(function () {
|
||
|
var sample = new ej.Tab($("#defaultTab"), {
|
||
|
width: "500px",
|
||
|
collapsible: true,
|
||
|
events: "click",
|
||
|
heightAdjustMode: ej.Tab.HeightAdjustMode.Content,
|
||
|
showCloseButton: true,
|
||
|
showRoundedCorner: false
|
||
|
});
|
||
|
});
|
||
|
})(TabComponent || (TabComponent = {}));
|