Added special script to handle parcel and node require. Added new tagging control. Adding new HTML Sanitizer. Packages so I could be sqlite with the right electron version. Some style changes. Interface changes. Changes to the sqlite/client. Interfaces cuased errors. Fixed bugs in electron ipc handling. Fixes to the sqlite libs. Create a new input control that can handle pasting. pasting HTML works with cycle through HTML,Text, Sanatized HTML. New UI controls. Time stamp control has more functionality.
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
import App from './src/ui/app.riot'
|
|
|
|
import { component } from 'riot'
|
|
|
|
|
|
setTimeout(()=>{
|
|
document.getElementById('main-loading').remove();
|
|
component(App)(document.getElementById('timechain'));
|
|
},0)
|
|
|
|
|