username@email.com
2021-09-02 9da546cd8de37882147f19f6f090544476bfe5ae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*******************************************************************************
* KindEditor - WYSIWYG HTML Editor for Internet
* Copyright (C) 2006-2011 kindsoft.net
*
* @author Roddy <luolonghao@gmail.com>
* @site http://www.kindsoft.net/
* @licence http://www.kindsoft.net/license.php
*******************************************************************************/
 
KindEditor.plugin('autoheight', function(K) {
    var self = this;
 
    if (!self.autoHeightMode) {
        return;
    }
 
    var edit = self.edit;
    var body = edit.doc.body;
    var minHeight = K.removeUnit(self.height);
 
    edit.iframe[0].scroll = 'no';
    body.style.overflowY = 'hidden';
 
    edit.afterChange(function() {
        self.resize(null, Math.max((K.IE ? body.scrollHeight : body.offsetHeight) + 62, minHeight));
    });
});