-
Notifications
You must be signed in to change notification settings - Fork 156
/
constants.js
21 lines (20 loc) · 1.27 KB
/
constants.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const TITLE = 'Flex Cheatsheet';
const DESC = 'Demos for W3C CSS Flexbox Specification http://www.w3.org/TR/css-flexbox-1/';
const URL = 'https://yoksel.github.io/flex-cheatsheet/';
const IMAGE = '//yoksel.github.io/flex-cheatsheet/screenshot.png';
const GITHUB = 'https://github.com/yoksel/flex-cheatsheet/';
const COUNTER = '<!-- Yandex.Metrika counter --> <script type="text/javascript" > (function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)}; m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)}) (window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym"); ym(65071600, "init", { clickmap:true, trackLinks:true, accurateTrackBounce:true, trackHash:true }); </script> <noscript><div><img src="https://mc.yandex.ru/watch/65071600" style="position:absolute; left:-9999px;" alt="" /></div></noscript> <!-- /Yandex.Metrika counter -->';
const HIGHLIGHT_GRID = 0;
const STORAGE_KEY = '"fbchTheme"';
const CLARIFICATION = 'All text content belongs to <a href="http://www.w3.org/TR/css-flexbox-1/">W3C CSS Flexbox Specification</a>,<br>I only added interactive demos';
module.exports = {
TITLE,
DESC,
URL,
IMAGE,
GITHUB,
COUNTER,
HIGHLIGHT_GRID,
STORAGE_KEY,
CLARIFICATION
};