github.com/yankunsam/loki/v2@v2.6.3-0.20220817130409-389df5235c27/clients/pkg/promtail/server/ui/static/js/config.js (about)

     1  function init() {
     2      $("#copyToClipboard").on("click", function () {
     3          var range = document.createRange();
     4          range.selectNode(document.getElementById("config_yaml"));
     5          window.getSelection().empty();
     6          window.getSelection().addRange(range);
     7          document.execCommand("copy");
     8          window.getSelection().empty();
     9      });
    10  }
    11  
    12  $(init);