Welcome to mirror list, hosted at ThFree Co, Russian Federation.

preload.js - github.com/jgraph/drawio-desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2014a685ac3fae416822d90398cac5a5a612a469 (plain)
1
2
3
4
5
6
7
8
9
console.log('in preload', __dirname)

PreApp = {
	log: s => {console.log('PreApp:', s)},
}

window.addEventListener('load', e => {
	PreApp.log('in onLoad')
})