fossasia/loklak_webclient

View on GitHub
iframely/plugins/domains/live.amcharts.com.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {

    re: /https?:\/\/live\.amcharts\.com\/([a-zA-Z0-9\-]+)/i,

    mixins: ["*"],

    getLink: function(urlMatch) {

        return {
            type: CONFIG.T.text_html,
            rel: [CONFIG.R.app, CONFIG.R.ssl, CONFIG.R.html5],
            href: 'https://live.amcharts.com/' + urlMatch[1] + '/embed/',
            "aspect-ratio": 16 / 9
        };
    },

    tests: [
        "http://live.amcharts.com/UxZGR/"
    ]
};