mirror of
https://gh.wpcy.net/https://github.com/discourse/wp-discourse.git
synced 2026-05-24 04:53:57 +08:00
13 lines
365 B
JavaScript
Vendored
13 lines
365 B
JavaScript
Vendored
/**
|
|
* Fixes Discourse oneboxes and mention links for display on WordPress.
|
|
*
|
|
* @package WPDiscourse
|
|
*/
|
|
|
|
jQuery( document ).ready(function() {
|
|
jQuery( '.lazyYT' ).each(function() {
|
|
var id = jQuery( this ).data( 'youtube-id' ),
|
|
url = 'https://www.youtube.com/watch?v=' + id;
|
|
jQuery( this ).replaceWith( '<a href="' + url + '">' + url + '</a>' );
|
|
});
|
|
});
|