1
0

tip.js 237 B

1234567891011
  1. //= require views/misc/notif
  2. app.views.Tip = class Tip extends app.views.Notif {
  3. static className = "_notif _notif-tip";
  4. static defautOptions = { autoHide: false };
  5. render() {
  6. this.html(this.tmpl(`tip${this.type}`));
  7. }
  8. };