2018-04-27 21:25:04 +00:00
|
|
|
(function() {
|
|
|
|
'use strict';
|
2015-02-18 02:03:05 +00:00
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
window.Whisper = window.Whisper || {};
|
2015-02-18 02:03:05 +00:00
|
|
|
|
2018-04-27 21:25:04 +00:00
|
|
|
var ErrorView = Whisper.View.extend({
|
|
|
|
className: 'error',
|
|
|
|
templateName: 'generic-error',
|
|
|
|
render_attributes: function() {
|
|
|
|
return this.model;
|
|
|
|
},
|
|
|
|
});
|
2015-02-18 02:03:05 +00:00
|
|
|
})();
|