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
{{ message }}
This repository has been archived by the owner on Mar 6, 2022. It is now read-only.
The properties endVideoBehaviorString and endVideoBehavior mutally set each other, creating an endless lopp.
/// What do do when the video ends (default: PauseOnLastFrame) as a String
public var endVideoBehaviorString: String = "pause" {
didSet {
self.endVideoBehavior = WistiaEndVideoBehavior.fromString(self.endVideoBehaviorString)
}
}
/// What do do when the video ends (default: PauseOnLastFrame) as a String
public var endVideoBehavior: WistiaEndVideoBehavior = .pauseOnLastFrame {
didSet {
self.endVideoBehaviorString = endVideoBehavior.description()
}
}
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The properties endVideoBehaviorString and endVideoBehavior mutally set each other, creating an endless lopp.
The text was updated successfully, but these errors were encountered: