2018-07-07 00:48:14 +00:00
|
|
|
/* global Whisper */
|
|
|
|
|
|
|
|
// 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.AttachmentPreviewView = Whisper.View.extend({
|
|
|
|
className: 'attachment-preview',
|
|
|
|
templateName: 'attachment-preview',
|
2018-07-07 00:48:14 +00:00
|
|
|
render_attributes() {
|
2018-04-27 21:25:04 +00:00
|
|
|
return { source: this.src };
|
|
|
|
},
|
|
|
|
});
|
2015-01-16 23:39:01 +00:00
|
|
|
})();
|