16 lines
317 B
JavaScript
16 lines
317 B
JavaScript
/*
|
|
* vim: ts=4:sw=4:expandtab
|
|
*/
|
|
(function () {
|
|
'use strict';
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
var ErrorView = Whisper.View.extend({
|
|
className: 'error',
|
|
templateName: 'generic-error',
|
|
render_attributes: function() {
|
|
return this.model;
|
|
}
|
|
});
|
|
})();
|