Files
AMYP/01🕸uikit_3.2.0🕸.js

24 lines
950 B
JavaScript
Raw Permalink 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.

УстановитьUIkit = мир =>
{
var м = мир.модули.модульПоУказателю(УКАЗАТЕЛЬТОГО_МОДУЛЯ);
var префикс = ИМЯТОГОАЙЛА.substring(0, ИМЯТОГОАЙЛА.length - 3);
var css = м.содержимое[префикс + "uikit.min.css"];
var js = м.содержимое[префикс + "uikit.min.js"];
var iconsJS = м.содержимое[префикс + "uikit-icons.min.js"];
// Применить стиль.
var style = document.createElement("style");
document.head.appendChild(style);
style.innerHTML = css;
function загрузитьСкрипт(код)
{
var скрипт = document.createElement("script");
скрипт.innerHTML = код;
document.body.appendChild(скрипт);
}
загрузитьСкрипт(js);
загрузитьСкрипт(iconsJS);
};