You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, we can either sync-current-time, sync-playing or both (with sync-all).
All three options actually sync the medium as well.
There should be a way to only sync the medium (hence its URL) when you don't want to sync anything...
// only sync the medium
<camomile-player[...]src="mediumView"></camomile-player>
// sync the medium and its "currentTime" property
<camomile-player[...]src="mediumView" sync-current-time="mediumView"></camomile-player>
// sync the medium and all its properties
<camomile-player[...]src="mediumView" sync-all="mediumView"></camomile-player>
// this could be also supported and would be equivalent
// here, True would mean "sync-all = src"
<camomile-player[...]src="mediumView" sync-all=True></camomile-player>
// but this could be also possible:
<camomile-player[...]src="mediumView" sync-all="anotherMediumView"></camomile-player>
(related to #51)
Right now, we can either
sync-current-time
,sync-playing
or both (withsync-all
).All three options actually sync the
medium
as well.There should be a way to only sync the medium (hence its URL) when you don't want to sync anything...
cc @PaulAlbert31
The text was updated successfully, but these errors were encountered: