We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create a Marker component.
Marker
Each marker will have a time property and an editable text description.
time
text
class Marker() { constructor(vnode) { this.time = vnode.attrs.time this.text = vnode.attrs.text } view(vnode) { return m('.marker', {time: this.time}, [ m('.marker_text', this.text) ]) } }
Markers will be instantiated on clips. src/Clip.js
m.request('/markers/' + this.filename).then( (m) => { this.markers = m }
marker information, is pulled from api:
@app.get('/markers/{filename}') def get_markers(filename: str): # get list of markers return markers
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Create a
Marker
component.Each marker will have a
time
property and an editabletext
description.Markers will be instantiated on clips.
src/Clip.js
marker information, is pulled from api:
The text was updated successfully, but these errors were encountered: