It was rather easy to add to phpBB. Just placed the CSS file and the jquery.oembed.js files into the assets dir. Then loaded the js before </body> and the CSS in head and added this piece of js code to make it work:
- Code: Select all
(function($) {
$(document).ready(function() {
$(".content .postlink").oembed(null, {
embedMethod: "append",
maxWidth: 1024,
maxHeight: 768,
});
});
})(jQuery);
This replaces postlinks directlry with videos etc. which breaks paragraphs, so the embedMethod will have to be improved to append after paragraph or at end of post for this to be usable.


