dev_forum
hjm 5 years ago
parent eba6fc1508
commit 7e1a42dc52

@ -320,20 +320,23 @@ class TPIMonaco extends Component {
editor.focus(); editor.focus();
}, 600) }, 600)
window.editor_monaco.addCommand(monaco.KeyMod.CtrlCmd | monaco.KeyCode.KEY_S, () => {
this.props.doFileUpdateRequestOnCodeMirrorBlur();
return false;
});
}) })
window.document.onkeydown = (e) => { // window.document.onkeydown = (e) => {
e = window.event || e; // e = window.event || e;
if(e.keyCode== 83 && e.ctrlKey){ // if(e.keyCode== 83 && e.ctrlKey){
/*延迟兼容FF浏览器 */ // /*延迟兼容FF浏览器 */
// setTimeout(function(){ // // setTimeout(function(){
// alert('ctrl+s'); // // alert('ctrl+s');
// },1); // // },1);
this.props.doFileUpdateRequestOnCodeMirrorBlur(); // this.props.doFileUpdateRequestOnCodeMirrorBlur();
return false; // return false;
} // }
}; // };
} }
onFontSizeChange = (value) => { onFontSizeChange = (value) => {
toStore('cmFontSize', value) toStore('cmFontSize', value)

Loading…
Cancel
Save