fossasia/loklak_webclient

View on GitHub
iframely/plugins/links/oembed-icon.js

Summary

Maintainability
A
3 hrs
Test Coverage
module.exports = {

    getLink: function(oembed) {

        if (oembed.icon_url) {
            return {
                href: oembed.icon_url,
                type: CONFIG.T.image,
                rel: [CONFIG.R.icon, CONFIG.R.oembed],
                width: oembed.icon_width,
                height: oembed.icon_height
            };
        }
    }
};