Sha256: a22841ce7ec6b4104a43bf50bc17db6151dab6d4f0d6e98272de8a9c6739e513
Contents?: true
Size: 802 Bytes
Versions: 25
Compression:
Stored size: 802 Bytes
Contents
/******************************************************************************* * 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)); }); });
Version data entries
25 entries across 25 versions & 4 rubygems