You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
620B

  1. ИспользоватьFullScreenHelper = мир =>
  2. {
  3. document.body.innerHTML += `
  4. <button onclick="FullScreenHelper.request();">Полный экран</button>
  5. <button onclick="FullScreenHelper.exit();">Вернуться</button>
  6. `;
  7. };
  8. // // // //
  9. ЗагрузитьFullScreenHelper = мир =>
  10. {
  11. var м = мир.модули.модульПоУказателю(УКАЗАТЕЛЬ_ЭТОГО_МОДУЛЯ);
  12. eval(м.содержимое["/full-screen-helper.js"]);
  13. };
  14. // // // //
  15. ЗадатьЗаголовок = мир =>
  16. {
  17. document.title = "🚀 Проверить Full Screen Helper";
  18. };