@atlaskit/editor-plugin-base
Version:
Base plugin for @atlaskit/editor-core
13 lines • 372 B
JavaScript
import { scrollGutterPluginKey } from '../pm-plugins/scroll-gutter/plugin-key';
export var setKeyboardHeight = function setKeyboardHeight(keyboardHeight) {
return function (state, dispatch) {
var tr = state.tr;
tr.setMeta(scrollGutterPluginKey, {
keyboardHeight: keyboardHeight
});
if (dispatch) {
dispatch(tr);
}
return true;
};
};