mirror of
https://github.com/esiur/iui.git
synced 2026-04-04 06:58:22 +00:00
initial commit
This commit is contained in:
20
src/UI/Tab.js
Normal file
20
src/UI/Tab.js
Normal file
@@ -0,0 +1,20 @@
|
||||
import { IUI } from "../Core/IUI.js";
|
||||
import IUIElement from "../Core/IUIElement.js";
|
||||
|
||||
export default IUI.module(class Tab extends IUIElement {
|
||||
constructor(properties) {
|
||||
super(properties);
|
||||
}
|
||||
|
||||
create() {
|
||||
|
||||
}
|
||||
|
||||
get title() {
|
||||
return this.getAttribute("title");
|
||||
}
|
||||
|
||||
get selected() {
|
||||
return this.hasAttribute("selected");// == "1" || selected == "yes" || selected == "true");
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user