mirror of
https://github.com/typecho/typecho.git
synced 2025-04-05 02:32:26 +02:00
fix height
This commit is contained in:
parent
beaa7cb6e4
commit
56e1ee0b74
@ -128,16 +128,16 @@ $(document).ready(function () {
|
||||
var input = $('#text'), th = textarea.height();
|
||||
|
||||
editor.hooks.chain('enterFakeFullScreen', function () {
|
||||
var height = Math.max(document.documentElement.clientHeight, document.body.clientHeight);
|
||||
var height = window.innerHeight || document.body.clientHeight || document.documentElement.clientHeight;
|
||||
|
||||
th = textarea.height();
|
||||
$(document.body).addClass('fullscreen');
|
||||
textarea.css('height', height - 52);
|
||||
textarea.css('height', height - toolbar.outerHeight());
|
||||
});
|
||||
|
||||
editor.hooks.chain('enterFullScreen', function () {
|
||||
$(document.body).addClass('fullscreen');
|
||||
textarea.css('height', window.screen.height - 52);
|
||||
textarea.css('height', window.screen.height - toolbar.outerHeight());
|
||||
});
|
||||
|
||||
editor.hooks.chain('exitFullScreen', function () {
|
||||
|
Loading…
x
Reference in New Issue
Block a user