diff --git a/app/models/post_analyzer.rb b/app/models/post_analyzer.rb index 0b8d590b1cb..913b5a81ebe 100644 --- a/app/models/post_analyzer.rb +++ b/app/models/post_analyzer.rb @@ -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 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] diff --git a/plugins/lazyYT/assets/stylesheets/lazyYT.css b/plugins/lazyYT/assets/stylesheets/lazyYT.css index 732735138a0..38d6bbff693 100644 --- a/plugins/lazyYT/assets/stylesheets/lazyYT.css +++ b/plugins/lazyYT/assets/stylesheets/lazyYT.css @@ -13,6 +13,7 @@ padding: 0 0 56.25% 0; overflow: hidden; background-color: #000000; + margin-bottom: 12px; } .lazyYT-container iframe {