fossasia/loklak_webclient

View on GitHub
iframely/plugins/custom/video_src-responsive.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {

    getLink: function(meta) {

        return {
            href: meta.video_src,
            type: meta.video_type,
            rel: CONFIG.R.player,
            "aspect-ratio": meta.video_width / meta.video_height
        };
    }
};