Fix SetClipboardText for web
This commit is contained in:
parent
016b7d0a3a
commit
54ff6526ee
|
|
@ -2148,7 +2148,7 @@ void SetClipboardText(const char *text)
|
|||
#if defined(PLATFORM_WEB)
|
||||
// Security check to (partially) avoid malicious code
|
||||
if (strchr(text, '\'') != NULL) TRACELOG(LOG_WARNING, "SYSTEM: Provided Clipboard could be potentially malicious, avoid [\'] character");
|
||||
else emscripten_run_script(TextFormat("navigator.clipboard.writeText('%s')", text));
|
||||
else emscripten_run_script(TextFormat("navigator.clipboard.writeText(`%s`)", text));
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user