| Server IP : 74.208.250.37 / Your IP : 216.73.216.114 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ubuntu 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : miferval ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/brainwavemx/public/node_modules/summernote/src/js/module/ |
Upload File : |
import $ from 'jquery';
export default class Fullscreen {
constructor(context) {
this.context = context;
this.$editor = context.layoutInfo.editor;
this.$toolbar = context.layoutInfo.toolbar;
this.$editable = context.layoutInfo.editable;
this.$codable = context.layoutInfo.codable;
this.$window = $(window);
this.$scrollbar = $('html, body');
this.scrollbarClassName = 'note-fullscreen-body';
this.onResize = () => {
this.resizeTo({
h: this.$window.height() - this.$toolbar.outerHeight(),
});
};
}
resizeTo(size) {
this.$editable.css('height', size.h);
this.$codable.css('height', size.h);
if (this.$codable.data('cmeditor')) {
this.$codable.data('cmeditor').setsize(null, size.h);
}
}
/**
* toggle fullscreen
*/
toggle() {
this.$editor.toggleClass('fullscreen');
const isFullscreen = this.isFullscreen();
this.$scrollbar.toggleClass(this.scrollbarClassName, isFullscreen);
if (isFullscreen) {
this.$editable.data('orgHeight', this.$editable.css('height'));
this.$editable.data('orgMaxHeight', this.$editable.css('maxHeight'));
this.$editable.css('maxHeight', '');
this.$window.on('resize', this.onResize).trigger('resize');
} else {
this.$window.off('resize', this.onResize);
this.resizeTo({ h: this.$editable.data('orgHeight') });
this.$editable.css('maxHeight', this.$editable.css('orgMaxHeight'));
}
this.context.invoke('toolbar.updateFullscreen', isFullscreen);
}
isFullscreen() {
return this.$editor.hasClass('fullscreen');
}
destroy() {
this.$scrollbar.removeClass(this.scrollbarClassName);
}
}