Sign in
◑
Theme
gerrit
/
plugins
/
codemirror-editor
/
78d9ef2e75c7314b155d0a3a5996d074dd454e4c
/
.
/
web
/
safe-script.ts
blob: ff115eb2116ae8a1ae6c649c5b24aa11cbb69696 [
file
]
/**
* @license
* Copyright 2022 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
export
function
setScriptSrc
(
el
:
HTMLScriptElement
,
pluginUrl
:
string
)
{
el
.
src
=
`${pluginUrl}static/codemirror_element.js`
;
}