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.

28 lines
654B

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