BigW Consortium Gitlab

copy_to_clipboard.js 1.18 KB
Newer Older
Fatih Acet committed
1 2 3 4 5 6 7 8

/*= require clipboard */

(function() {
  var genericError, genericSuccess, showTooltip;

  genericSuccess = function(e) {
    showTooltip(e.trigger, 'Copied!');
9
    // Clear the selection and blur the trigger so it loses its border
Fatih Acet committed
10 11 12 13
    e.clearSelection();
    return $(e.trigger).blur();
  };

14 15 16 17
  // Safari doesn't support `execCommand`, so instead we inform the user to
  // copy manually.
  //
  // See http://clipboardjs.com/#browser-support
Fatih Acet committed
18 19 20
  genericError = function(e) {
    var key;
    if (/Mac/i.test(navigator.userAgent)) {
21
      key = '⌘'; // Command
Fatih Acet committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
    } else {
      key = 'Ctrl';
    }
    return showTooltip(e.trigger, "Press " + key + "-C to copy");
  };

  showTooltip = function(target, title) {
    return $(target).tooltip({
      container: 'body',
      html: 'true',
      placement: 'auto bottom',
      title: title,
      trigger: 'manual'
    }).tooltip('show').one('mouseleave', function() {
      return $(this).tooltip('hide');
    });
  };

  $(function() {
    var clipboard;
Phil Hughes committed
42

43 44 45
    clipboard = new Clipboard('[data-clipboard-target], [data-clipboard-text]');
    clipboard.on('success', genericSuccess);
    return clipboard.on('error', genericError);
Fatih Acet committed
46 47 48
  });

}).call(this);