14 lines
278 B
Plaintext
Raw Normal View History

2014-07-22 08:09:32 +05:30
/**
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();
});
}
};