webserverai
Version:
WebServerAI is an advanced project using AI to revolutionize web development. It empowers users to create visually stunning websites tailored to their needs without extensive coding knowledge. This innovative tool streamlines the design process, offering
14 lines • 398 B
JavaScript
import {shortcutJS} from '/WebServerAI/assets/AI/js/components/shortcut.min.js';
var shortcuts = {
'bold':{
ctrlKey: true,
keyName: 'b'
}
}
function loadEditables(sc=null){
sc = shortcuts
document.querySelector('body[contenteditable]').addEventListener('keydown',(e)=>{
const key = e.keyCode||e.which;
})
}
export {shortcuts, loadEditables};