fossasia/loklak_webclient

View on GitHub
iframely/plugins/domains/indiegogo.com.js

Summary

Maintainability
A
1 hr
Test Coverage
module.exports = {

    re: [
        /^https:\/\/www\.indiegogo\.com\/projects\/([\w-]+)/i,
        /^https:\/\/life\.indiegogo\.com\/fundraisers\/([\w-]+)/i
    ],

    mixins: [
        "*"
    ],

    getLink: function(urlMatch) {
        return {
            href: 'https://www.indiegogo.com/project/' + urlMatch[1] + '/embedded',
            type: CONFIG.T.text_html,
            rel: CONFIG.R.app,
            width: 222,
            height: 445
        };
    },

    tests: [{
        pageWithFeed: 'https://www.indiegogo.com'
    },
        "https://www.indiegogo.com/projects/the-intel-80386-and-80486/"
    ]
};