Files
nPOBEPuTb-MAClllTAb/🎬.js

28 lines
654 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.

ИспользоватьFullScreenHelper = мир =>
{
document.body.innerHTML += `
<div id="fs">
<button onclick="FullScreenHelper.request('#fs');">Полный экран</button>
<button onclick="FullScreenHelper.exit();">Вернуться</button>
</div>
`;
};
// // // //
ЗагрузитьFullScreenHelper = мир =>
{
var м = мир.модули.модульПоУказателю(УКАЗАТЕЛЬТОГО_МОДУЛЯ);
eval(м.содержимое["/full-screen-helper.js"]);
};
// // // //
ЗадатьЗаголовок = мир =>
{
document.title = "🚀 Проверить Full Screen Helper";
};