mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 18:17:29 -05:00
9 lines
299 B
JavaScript
9 lines
299 B
JavaScript
export default Discourse.ModalBodyView.extend({
|
|
templateName: 'modal/history',
|
|
title: I18n.t('history'),
|
|
|
|
resizeModal: function(){
|
|
var viewPortHeight = $(window).height();
|
|
this.$(".modal-body").css("max-height", Math.floor(0.8 * viewPortHeight) + "px");
|
|
}.on("didInsertElement")
|
|
});
|