2015-09-07 14:53:43 -07:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2015-01-16 13:39:01 -10:00
|
|
|
*/
|
|
|
|
(function () {
|
|
|
|
'use strict';
|
2015-03-05 15:44:53 -08:00
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
|
2015-03-05 15:25:49 -08:00
|
|
|
Whisper.AttachmentPreviewView = Whisper.View.extend({
|
2015-03-02 18:27:14 -08:00
|
|
|
className: 'attachment-preview',
|
2015-12-08 15:01:29 -08:00
|
|
|
templateName: 'attachment-preview',
|
2015-03-06 17:05:36 -08:00
|
|
|
render_attributes: function() {
|
2015-03-05 15:25:49 -08:00
|
|
|
return {source: this.src};
|
2015-01-16 13:39:01 -10:00
|
|
|
}
|
|
|
|
});
|
|
|
|
})();
|