| Conditions | 1 |
| Paths | 1 |
| Total Lines | 20 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | protected function addScript() |
||
| 16 | { |
||
| 17 | $script = <<<SCRIPT |
||
| 18 | $('.grid-column-copyable').click(function (e) { |
||
| 19 | |||
| 20 | var content = $(this).data('content'); |
||
| 21 | |||
| 22 | var \$temp = $('<input>'); |
||
| 23 | |||
| 24 | \$("body").append(\$temp); |
||
| 25 | \$temp.val(content).select(); |
||
| 26 | document.execCommand("copy"); |
||
| 27 | \$temp.remove(); |
||
| 28 | |||
| 29 | $(this).tooltip('show'); |
||
| 30 | }); |
||
| 31 | SCRIPT; |
||
| 32 | |||
| 33 | Admin::script($script); |
||
| 34 | } |
||
| 35 | |||
| 48 | } |