You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/assets/javascripts/views/misc/tip.js

12 lines
237 B

//= require views/misc/notif
app.views.Tip = class Tip extends app.views.Notif {
static className = "_notif _notif-tip";
1 year ago
static defautOptions = { autoHide: false };
render() {
this.html(this.tmpl(`tip${this.type}`));
}
};