/
githubmirror
/
markdown-here
Обзор
Документация
Войти
/
githubmirror
/
markdown-here
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.11.3
test/index.html
31 строка
796 B
Adam Pritchard
Modified test page to use iframe
26 янв 2013, 21:34
26 янв 2013, 21:34
f5ae433
Код
Авторство
О чём код?
<!doctype html> <html lang="en" style="height: 100%"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Markdown Here Test</title> <meta name="description" content=""> <meta name="author" content=""> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" href="/favicon.ico"> <link rel="apple-touch-icon" href="/apple-touch-icon.png"> </head> <body style="height: 100%"> <iframe style="height: 100%; width: 100%;"> </iframe> <script> document.addEventListener('DOMContentLoaded', function() { var body = document.querySelector('iframe').contentDocument.body; body.setAttribute('contenteditable', true); body.focus(); }); </script> </body> </html>