2
0
mirror of https://github.com/esiur/iui.git synced 2025-05-06 06:42:58 +00:00
This commit is contained in:
Ahmed Zamil 2022-02-17 16:37:28 +03:00
commit dde241ebfb

View File

@ -57,7 +57,7 @@ export default IUI.module(class Input extends IUIElement {
this._span.innerHTML = this.getAttribute("caption"); this._span.innerHTML = this.getAttribute("caption");
this._input = document.createElement("input"); this._input = document.createElement("input");
this._input.placeholder = " "; this._input.placeholder = this.getAttribute("placeholder") || "";
let self = this; let self = this;