1
0
mirror of https://github.com/Qortal/qortal-ui.git synced 2025-08-14 22:51:33 +00:00
Files
build
config
core
assets
config
emoji
exports
font
language
memory-pow
public
server
sound
src
tooling
translate
directives
lang-changed-base.js
lang-changed.js
translate-unsafe-html.js
translate.js
config.js
helpers.js
index.js
model.js
util.js
ui-core.js
crypto
img
lib
locales
plugins
scripts
snap
splash
.editorconfig
.gitattributes
.gitignore
CONTRIBUTING.md
LICENSE
README.md
build-setup.js
build.bat
build.js
build.sh
electron-builder.yml
electron.js
package-lock.json
package.json
run_server.bat
server.js
set-up-snap.sh
watch-inline.js
watch.js
qortal-ui/core/translate/directives/lang-changed.js
AlphaX-Projects fa29ff4c43 Update UI
Refactor and added new functioms
2024-05-08 13:16:23 +02:00

10 lines
301 B
JavaScript

import { directive } from 'lit/directive.js'
import { LangChangedDirectiveBase } from './lang-changed-base.js'
export class LangChangedDirective extends LangChangedDirectiveBase {
render(getValue) {
return this.renderValue(getValue)
}
}
export const langChanged = directive(LangChangedDirective)