signal-desktop/js/views/attachment_preview_view.js

17 lines
347 B
JavaScript
Raw Normal View History

/* global Whisper */
// eslint-disable-next-line func-names
2018-04-27 17:25:04 -04:00
(function() {
'use strict';
2018-04-27 17:25:04 -04:00
window.Whisper = window.Whisper || {};
2018-04-27 17:25:04 -04:00
Whisper.AttachmentPreviewView = Whisper.View.extend({
className: 'attachment-preview',
templateName: 'attachment-preview',
render_attributes() {
2018-04-27 17:25:04 -04:00
return { source: this.src };
},
});
2015-01-16 13:39:01 -10:00
})();