Files
discourse-adplugin/assets/javascripts/discourse/templates/components/google-dfp-ad.hbs
T
2015-09-02 13:50:47 +10:00

22 lines
662 B
Handlebars
Executable File

{{#if site.mobileView}}
{{#if loadedGoogletag}}
{{#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}}
{{/if}}
{{else}}
{{#if loadedGoogletag}}
{{#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}}
{{/if}}
{{/if}}