View file phpbb/mediaembed/adm/style/event/acp_overall_footer_after.html

File size: 476B
{% if MEDIA_SITES %}
<script>
	(function($) {
		'use strict';
		$(function() {
			$('#mediaembed_manage').on('click', 'label', function() {
				if ($(this).children('input').prop('disabled')) {
					// Create a phantom <div> element and set the HTML content for it, then return it as text
					var title = $('<div>').html($(this).attr('title')).text();
					phpbb.alert('{{ lang('GENERAL_ERROR')|escape('js') }}', title);
				}
			});
		});
	})(jQuery);
</script>
{% endif %}