discourse-adplugin/assets/javascripts/discourse/templates/components/google-dfp-ad.hbs

17 lines
589 B
Handlebars
Raw Normal View History

{{#if checkTrustLevels}}
2015-08-19 20:07:51 -04:00
{{#if loadedGoogletag}}
{{#if site.mobileView}}
2015-09-01 23:50:47 -04:00
<div id={{divId}} style={{adWrapperStyleMobile}} class="dfp-ad-unit" align=center>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('{{divId}}'); });
</script>
</div>
{{else}}
2015-09-01 23:50:47 -04:00
<div id={{divId}} style={{adWrapperStyle}} class="dfp-ad-unit" align=center>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('{{divId}}'); });
</script>
</div>
{{/if}}
2015-08-19 20:07:51 -04:00
{{/if}}
{{/if}}