blob: 768d719c93fa19cb0731c6530af46720d8159e9d [file] [log] [blame]
/**
* Hint menu alert
*/
define(function () {
"use strict";
return {
create : function (msg) {
return Object.create(this)._init(msg);
},
_init : function (msg) {
this._type = 'alert';
this.active = false;
this._element = document.createElement('div');
this._element.style.display = 'none';
this._element.classList.add('alert', 'hint');
return this;
},
show : function (msg) {
this._element.textContent = msg;
this.active = true;
this._element.style.display = 'block';
},
hide : function () {
if (!this.active)
return false;
this._element.style.display = 'none';
this.active = false;
return true;
},
element : function () {
return this._element;
}
}
});