Files
MAOH_1/пуск|run.js

18 lines
570 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const ИМЯ = "МАОН";
// // // //
ОтобразитьАнимациюЗагрузкиМаджонга = мир =>
{
var м = мир.модули.модульПоИмени(ИМЯ);
var структура = м.содержимое["/загрузка|loading.html"]
.replace(/\${версия}/g, м.версия);
document.body.innerHTML = структура;
var вид = document.createElement("style");
document.head.appendChild(вид);
вид.innerHTML = м.содержимое["/загрузка|loading.css"];
};