mirror of https://github.com/iv-org/invidious.git
Remove timestamp fallback for nojs
This commit is contained in:
parent
8706364d90
commit
fff817b654
|
@ -507,7 +507,7 @@ def content_to_comment_html(content)
|
|||
length_seconds = watch_endpoint["startTimeSeconds"].as_i
|
||||
video_id = watch_endpoint["videoId"].as_s
|
||||
|
||||
text = %(<a onmouseenter='this["href"]="javascript:void();"' onclick="player.currentTime(#{length_seconds})" href="/watch?v=#{video_id}&t=#{length_seconds}">#{text}</a>)
|
||||
text = %(<a href="javascript:void();" onclick="player.currentTime(#{length_seconds})">#{text}</a>)
|
||||
elsif url = run["navigationEndpoint"]["commandMetadata"]?.try &.["webCommandMetadata"]["url"].as_s
|
||||
text = %(<a href="#{url}">#{text}</a>)
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue