mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
975eed8564
Summary: A check for old browsers and a Grist favicon were not available in grist-core, leaving harmless but distracting errors in logs. This adds them. Test Plan: checked manually Reviewers: georgegevoian Reviewed By: georgegevoian Subscribers: jarek Differential Revision: https://phab.getgrist.com/D3207
44 lines
1.3 KiB
HTML
44 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf8">
|
|
<link rel="icon" type="image/x-icon" href="icons/favicon.png" />
|
|
<link rel="stylesheet" href="icons/icons.css">
|
|
<title>Custom widget</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-size: 13px;
|
|
color: #262633;
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI,
|
|
Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div style="padding: 20px">
|
|
<div style="font-size: 20px; font-weight: 600;">
|
|
<span style="font-size: 20px; font-weight: 600;">Custom widget</span>
|
|
<span style="font-size: 16px; font-weight: 400; color:#a7a7a7">(not configured)</span>
|
|
</div>
|
|
<p>
|
|
The Custom widget allows a user to insert almost anything in their document.
|
|
Creating a custom widget currently requires knowledge of web development,
|
|
and access to a public web server (for example, GitHub Pages).
|
|
</p>
|
|
<p>
|
|
To configure this widget, open the right panel by clicking <i>Widget options</i> in the section menu.
|
|
</p>
|
|
<p>
|
|
Learn more about Custom Widgets at:
|
|
<a target="_blank" href="https://support.getgrist.com/widget-custom">
|
|
https://support.getgrist.com/widget-custom
|
|
</a>
|
|
</p>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|