13 lines
275 B
JavaScript
13 lines
275 B
JavaScript
/**
|
|
This view handles rendering of the history of a post
|
|
|
|
@class HistoryView
|
|
@extends Discourse.View
|
|
@namespace Discourse
|
|
@module Discourse
|
|
**/
|
|
Discourse.HistoryView = Discourse.ModalBodyView.extend({
|
|
templateName: 'modal/history',
|
|
title: I18n.t('history')
|
|
});
|