Added margin to the video container in lazyYt plugin
This commit is contained in:
parent
6832b06a80
commit
29947f6e95
|
@ -12,36 +12,10 @@ class PostAnalyzer
|
|||
@found_oneboxes
|
||||
end
|
||||
|
||||
#to add margin between youtube links
|
||||
def newlinereplace(*args)
|
||||
sp = args[0].split(/\n+/)
|
||||
a = 0
|
||||
x = 0
|
||||
replacem = []
|
||||
while a<sp.length do
|
||||
if sp[a].length > 0
|
||||
replacem[x] =sp[a]
|
||||
x+=1
|
||||
end
|
||||
if a!= sp.length-1
|
||||
replacem[x]="\n"
|
||||
x+=1
|
||||
end
|
||||
a+=1
|
||||
end
|
||||
args[0]=replacem.join()
|
||||
return *args
|
||||
end
|
||||
|
||||
# What we use to cook posts
|
||||
def cook(*args)
|
||||
yt_string = args[0]
|
||||
if yt_string.include? "www.youtube"
|
||||
*args = newlinereplace(*args)
|
||||
end
|
||||
|
||||
cooked = PrettyText.cook(*args)
|
||||
|
||||
result = Oneboxer.apply(cooked, topic_id: @topic_id) do |url, _|
|
||||
@found_oneboxes = true
|
||||
Oneboxer.invalidate(url) if args.last[:invalidate_oneboxes]
|
||||
|
|
|
@ -13,6 +13,7 @@
|
|||
padding: 0 0 56.25% 0;
|
||||
overflow: hidden;
|
||||
background-color: #000000;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.lazyYT-container iframe {
|
||||
|
|
Loading…
Reference in New Issue