Adding ability to save gif.. but gif never come through with copy paste. Just html with gif urls. Adding ability to right click on content and put on clipboard.
24 lines
503 B
JavaScript
24 lines
503 B
JavaScript
import './src/less/main.less'
|
|
import './src/css/tagify.scss'
|
|
|
|
import App from './src/ui/app.riot'
|
|
|
|
import { component, install } from 'riot'
|
|
|
|
let id = 0
|
|
|
|
install(function(component) {
|
|
// all components will pass through here
|
|
component.uid = ()=>{
|
|
return ++id;
|
|
}
|
|
})
|
|
|
|
window.debugging = true
|
|
|
|
setTimeout(() => {
|
|
document.getElementById('main-loading')?.remove()
|
|
component(App)(document.getElementById('timechain'))
|
|
Sentry.captureMessage('Application Started')
|
|
}, 0)
|