From 91f2f40a7875a5f97ee011151aeca61736fde5b8 Mon Sep 17 00:00:00 2001 From: Ivan Paramonau Date: Mon, 11 Jul 2016 05:31:50 -0400 Subject: [PATCH] domains: add bigthink.com --- plugins/domains/bigthink.com.js | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 plugins/domains/bigthink.com.js diff --git a/plugins/domains/bigthink.com.js b/plugins/domains/bigthink.com.js new file mode 100644 index 000000000..877ff34c6 --- /dev/null +++ b/plugins/domains/bigthink.com.js @@ -0,0 +1,20 @@ +module.exports = { + + re: /^https?:\/\/bigthink\.com\/videos\//i, + + mixins: [ + "*" + ], + + provides: '__allowEmbedURL', + + getData: function(urlMatch) { + return { + __allowEmbedURL: true + }; + }, + + tests: [ + "http://bigthink.com/videos/bre-pettis-on-makerbot-3-d-printing" + ] +}; \ No newline at end of file