Merge pull request #5621 from ostezer/docs-add-pardot

Add code for Pardot implementation to docs
This commit is contained in:
Thatcher 2014-05-12 09:18:12 -07:00
commit 27a39bfd1a
1 changed files with 14 additions and 0 deletions

View File

@ -67,5 +67,19 @@
<script src="/js/base.js"></script>
<script src="/tipuesearch/tipuesearch_set.js"></script>
<script src="/tipuesearch/tipuesearch.min.js"></script>
<script type="text/javascript">
piAId = '45082';
piCId = '1482';
(function() {
function async_load(){
var s = document.createElement('script'); s.type = 'text/javascript';
s.src = ('https:' == document.location.protocol ? 'https://pi' : 'http://cdn') + '.pardot.com/pd.js';
var c = document.getElementsByTagName('script')[0]; c.parentNode.insertBefore(s, c);
}
if(window.attachEvent) { window.attachEvent('onload', async_load); }
else { window.addEventListener('load', async_load, false); }
})();
</script>
</body>
</html>