Skip to content

Commit

Permalink
Fix: Work around for strange bug in Fusion
Browse files Browse the repository at this point in the history
  • Loading branch information
jonnitto committed Sep 4, 2022
1 parent 294630c commit e05704d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Resources/Private/Fusion/Component/Vimeo.fusion
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ prototype(Jonnitto.PrettyEmbedVimeo:Component.Vimeo) < prototype(Neos.Fusion:Com
configuration = ${Configuration.setting('Jonnitto.PrettyEmbedVimeo')}

live = true
videoID = null
videoID = ${null}
[email protected] = ${Type.isString(value) ? String.trim(value) : value}

lightbox = ${this.configuration.defaults.lightbox}
Expand All @@ -22,7 +22,7 @@ prototype(Jonnitto.PrettyEmbedVimeo:Component.Vimeo) < prototype(Neos.Fusion:Com
gdprMessage = Jonnitto.PrettyEmbedHelper:GdprMessage

# Pass a ratio like this: ${16 / 9}
ratio = null
ratio = ${null}
[email protected] = ${Jonnitto.PrettyEmbedHelper.paddingTop(value)}

// If true, this get only a value if ratio is not set
Expand All @@ -31,11 +31,11 @@ prototype(Jonnitto.PrettyEmbedVimeo:Component.Vimeo) < prototype(Neos.Fusion:Com

wrapper = ${Configuration.setting('Jonnitto.PrettyEmbedHelper.wrapper')}

id = null
id = ${null}

poster = null
poster2x = null
alternativeText = null
poster = ${null}
poster2x = ${null}
alternativeText = ${null}

playButton = Jonnitto.PrettyEmbedHelper:Button.Play

Expand Down

0 comments on commit e05704d

Please sign in to comment.