UNPKG

ember-cli-reddit-pixel

Version:
11 lines (9 loc) 628 B
'use strict'; module.exports = { name: 'ember-cli-reddit-pixel', contentFor: function(type, config) { if (type === 'head' && config.redditPixel && config.redditPixel.enabled && config.redditPixel.id) { return '<script>!function(w,d){if(!w.rdt){var p=w.rdt=function(){p.sendEvent?p.sendEvent.apply(p,arguments):p.callQueue.push(arguments)};p.callQueue=[];var t=d.createElement("script");t.src="https://www.redditstatic.com/ads/pixel.js",t.async=!0;var s=d.getElementsByTagName("script")[0];s.parentNode.insertBefore(t,s)}}(window,document);rdt(\'init\', \'' + config.redditPixel.id + '\');</script>'; } } };