/* * youtube * https://github.com/savetheinternet/Tinyboard/blob/master/js/youtube.js * * Don't load the YouTube player unless the video image is clicked. * This increases performance issues when many videos are embedded on the same page. * Currently only compatiable with YouTube. * * Proof of concept. * * Released under the MIT license * Copyright (c) 2013 Michael Save * Copyright (c) 2013-2014 Marcin Ɓabanowski * * Usage: * $config['embedding'] = array(); * $config['embedding'][0] = array( * '/^https?:\/\/(\w+\.)?(?:youtube\.com\/watch\?v=|youtu\.be\/)([a-zA-Z0-9\-_]{10,11})(&.+)?$/i', * $config['youtube_js_html']); * $config['additional_javascript'][] = 'js/jquery.min.js'; * $config['additional_javascript'][] = 'js/youtube.js'; * */ $(document).ready(function(){ if (window.Options && Options.get_tab('general')) { Options.extend_tab("general", "" + _('YouTube size') + ": x"); if (typeof localStorage.youtube_size === 'undefined') { localStorage.youtube_size = '{"width":360,"height":270}'; var our_yt = JSON.parse(localStorage.youtube_size); } else { var our_yt = JSON.parse(localStorage.youtube_size); $('#youtube-height').val(our_yt.height); $('#youtube-width').val(our_yt.width); } $('#youtube-width, #youtube-height').on('change', function() { if ($(this).attr('id') === 'youtube-height') { our_yt.height = $(this).val(); } else { our_yt.width = $(this).val(); } localStorage.youtube_size = JSON.stringify(our_yt); }); } var do_embed_yt = function(tag) { if (typeof our_yt === "undefined") { our_yt = {"width":360,"height":270}; } $('div.video-container a', tag).click(function() { $(this.parentNode).html('