2018-07-07 00:48:14 +00:00
|
|
|
/* global Whisper, Mustache, _ */
|
|
|
|
|
|
|
|
// eslint-disable-next-line func-names
|
2018-04-27 21:25:04 +00:00
|
|
|
(function() {
|
|
|
|
'use strict';
|
2018-07-07 00:48:14 +00:00
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
window.Whisper = window.Whisper || {};
|
2015-03-05 23:44:53 +00:00
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
Whisper.ToastView = Whisper.View.extend({
|
|
|
|
className: 'toast',
|
|
|
|
templateName: 'toast',
|
2018-07-07 00:48:14 +00:00
|
|
|
initialize() {
|
2018-04-27 21:25:04 +00:00
|
|
|
this.$el.hide();
|
|
|
|
},
|
2015-01-16 02:17:54 +00:00
|
|
|
|
2018-07-07 00:48:14 +00:00
|
|
|
close() {
|
2018-04-27 21:25:04 +00:00
|
|
|
this.$el.fadeOut(this.remove.bind(this));
|
|
|
|
},
|
2015-01-16 02:17:54 +00:00
|
|
|
|
2018-07-07 00:48:14 +00:00
|
|
|
render() {
|
2018-04-27 21:25:04 +00:00
|
|
|
this.$el.html(
|
|
|
|
Mustache.render(
|
|
|
|
_.result(this, 'template', ''),
|
|
|
|
_.result(this, 'render_attributes', '')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
this.$el.show();
|
|
|
|
setTimeout(this.close.bind(this), 2000);
|
|
|
|
},
|
|
|
|
});
|
2015-01-16 02:17:54 +00:00
|
|
|
})();
|