Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / common / extensions / docs / static / js / site.js
blobbd9e4e9653aecc19de03b8713b145334dbae8390
1 (function() {
3 function addGplusButton() {
4   var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
5   po.src = 'https://apis.google.com/js/plusone.js?onload=onLoadCallback';
6   var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
9 function openFeedback(e) {
10   e.preventDefault();
11   userfeedback.api.startFeedback({productId: 86265});
14 function addGoogleFeedback() {
15   [].forEach.call(document.querySelectorAll('[data-feedback]'), function(el, i) {
16     el.addEventListener('click', openFeedback);
17   });
21 // Auto syntax highlight all pre tags.
22 function prettyPrintCode() {
23   var pres = document.querySelectorAll('pre');
24   for (var i = 0, pre; pre = pres[i]; ++i) {
25     pre.classList.add('prettyprint');
26   }
27   window.prettyPrint && prettyPrint();
30 prettyPrintCode();
31 addGoogleFeedback();
32 addGplusButton();
34 })();