mirror of
https://github.com/rajnandan1/kener.git
synced 2026-01-01 23:19:44 -06:00
Introduces a 'tz' parameter for specifying timezone in embed scripts and iframe URLs, improving localization for embedded monitors. Updates documentation and refactors parameter handling to prioritize explicit timezone over browser-detected values. Relates to improved internationalization and user experience.
20 lines
473 B
HTML
20 lines
473 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Document</title>
|
|
<style>
|
|
body {
|
|
background-color: #111;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<script
|
|
async
|
|
src="http://localhost:3000/embed/monitor-earth/js?theme=light&monitor=http://localhost:3000/embed/monitor-earth&locale=fr&tz=Asia/Tokyo"
|
|
></script>
|
|
</body>
|
|
</html>
|