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