mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #5621 from ostezer/docs-add-pardot
Add code for Pardot implementation to docs
This commit is contained in:
commit
27a39bfd1a
1 changed files with 14 additions and 0 deletions
14
docs/theme/mkdocs/base.html
vendored
14
docs/theme/mkdocs/base.html
vendored
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue