wp-discourse/js/comments.js
2016-07-05 22:05:34 +00:00

18 lines
516 B
JavaScript
Vendored

/* globals discourse */
/**
* 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>' );
});
jQuery( 'a.mention' ).each(function() {
jQuery( this ).attr( 'href', discourse.url + jQuery( this ).attr( 'href' ) );
});
});