mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-04 12:51:41 -05:00
9 lines
223 B
JavaScript
9 lines
223 B
JavaScript
import { getPluginApi } from 'discourse/lib/plugin-api';
|
|
|
|
export default {
|
|
name: "apply-lazyYT",
|
|
initialize() {
|
|
const api = getPluginApi('0.1');
|
|
api.decorateCooked($elem => $('.lazyYT', $elem).lazyYT());
|
|
}
|
|
};
|