(copyCode)
| 90 | |
| 91 | /* 未登录复制代码 */ |
| 92 | function copyCodeCssFunc(copyCode) { |
| 93 | copyCode |
| 94 | ? addCss( |
| 95 | ` |
| 96 | .php-article .code, |
| 97 | .php-article{ |
| 98 | -webkit-touch-callout: auto !important; |
| 99 | -webkit-user-select: auto !important; |
| 100 | -khtml-user-select: auto !important; |
| 101 | -moz-user-select: auto !important; |
| 102 | -ms-user-select: auto !important; |
| 103 | user-select: auto !important; |
| 104 | }`, |
| 105 | `php-copyCode-css` |
| 106 | ) |
| 107 | : removeCss(`php-copyCode-css`) |
| 108 | } |
| 109 | |
| 110 | function copyCodeFunc(copyCode) { |
| 111 | copyCode && |
no test coverage detected