$()

in assets/scripts/cookies.js [52:76]


    $(document).ready(function() {
      $("code").bind({
        copy: function(event) {
          ga("send", "event", {
            eventCategory: window.location.pathname,
            eventAction: "copy_code"
          });
        },

        cut: function(event) {
          ga("send", "event", {
            eventCategory: window.location.pathname,
            eventAction: "copy_code"
          });
        }
      });

      $("a").click(function(event) {
        ga("send", "event", {
          eventCategory: window.location.pathname,
          eventAction: "click_link",
          eventLabel: event.target.href
        });
      });
    });