/
githubmirror
/
marktext
Обзор
Документация
Войти
/
githubmirror
/
marktext
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.15.1
src/index.ejs
33 строки
1 KB
Felix Häusler
Find best window to open second-instance files and directories in (#1054)
09 июн 2019, 16:41
Не верифицирован
09 июн 2019, 16:41
e6e6527
Код
Авторство
О чём код?
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Mark Text</title> <style> html, body { margin: 0; padding: 0; } </style> <% if (htmlWebpackPlugin.options.nodeModules) { %> <!-- Add `node_modules/` to global paths so `require` works properly in development --> <script> require('module').globalPaths.push('<%= htmlWebpackPlugin.options.nodeModules.replace(/\\/g, '\\\\') %>') </script> <% } %> </head> <body> <!-- Initial drag area (for Linux and Windows). --> <div id="init-drag-region" style="position: absolute;-webkit-app-region: drag;left: 0;right: 0;top: 0;height: 25px;"></div> <!-- Vue app --> <div id="app"></div> <!-- Set `__static` path to static files in production --> <script> if (process.env.NODE_ENV !== 'development') window.__static = require('path').join(__dirname, '/static').replace(/\\/g, '\\\\') </script> <!-- webpack builds are automatically injected --> </body> </html>