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