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

22 lines
662 B
Handlebars
Raw Normal View History

2015-08-19 20:07:51 -04:00
{{#if site.mobileView}}
{{#if loadedGoogletag}}
2015-09-01 23:50:47 -04:00
{{#if checkTrustLevels}}
<div id={{divId}} style={{adWrapperStyleMobile}} 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}}
{{else}}
2015-08-19 20:07:51 -04:00
{{#if loadedGoogletag}}
2015-09-01 23:50:47 -04:00
{{#if checkTrustLevels}}
<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}}