mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
13 lines
278 B
JavaScript
13 lines
278 B
JavaScript
/**
|
|
Apply lazyYT when the app boots
|
|
**/
|
|
import { decorateCooked } from 'discourse/lib/plugin-api';
|
|
|
|
export default {
|
|
name: "apply-lazyYT",
|
|
initialize: function(container) {
|
|
decorateCooked(container, function($elem) {
|
|
$('.lazyYT', $elem).lazyYT();
|
|
});
|
|
}
|
|
};
|