2015-09-07 14:53:43 -07:00
|
|
|
/*
|
|
|
|
* vim: ts=4:sw=4:expandtab
|
2015-02-17 18:03:05 -08:00
|
|
|
*/
|
|
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
|
2015-12-25 21:42:47 -08:00
|
|
|
var ErrorView = Whisper.View.extend({
|
2015-02-17 18:03:05 -08:00
|
|
|
className: 'error',
|
2015-12-25 21:42:47 -08:00
|
|
|
templateName: 'generic-error',
|
|
|
|
render_attributes: function() {
|
|
|
|
return this.model;
|
2015-02-17 18:03:05 -08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
})();
|