mirror of
https://github.com/discourse/discourse.git
synced 2024-11-28 14:55:21 +08:00
14 lines
278 B
JavaScript
14 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();
|
|
});
|
|
}
|
|
};
|