2018-04-27 21:25:04 +00:00
|
|
|
(function() {
|
|
|
|
'use strict';
|
|
|
|
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',
|
|
|
|
initialize: function() {
|
|
|
|
this.$el.hide();
|
|
|
|
},
|
2015-01-16 02:17:54 +00:00
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
close: function() {
|
|
|
|
this.$el.fadeOut(this.remove.bind(this));
|
|
|
|
},
|
2015-01-16 02:17:54 +00:00
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
render: function() {
|
|
|
|
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
|
|
|
})();
|