This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Уважаемый клиент! | |
| Прежде всего выражаем Вам свою благодарность за доверие, оказанное компании Link-Host.net! Вы сделали правильный выбор. | |
| Вам открыт доступ в Систему биллинга, где Вы можете оплатить наши услуги любым удобным Вам способом. | |
| Доменное имя будет зарегистрировано и станет доступно в течении суток после поступления оплаты. | |
| Параметры Вашего заказа: | |
| -------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const arr = [ | |
| { | |
| key: 'value', | |
| }, | |
| { | |
| key: 'value', | |
| }, | |
| { | |
| key: 'value', | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| window.onscroll = () => { | |
| const yPos = window.pageYOffset; | |
| // your function | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Hi Mihail, | |
| First of all, thank you for purchasing our theme. | |
| The best option is to explore error log on your server and identify the exact cause (probably memory or script timeout). | |
| Either way, this needs to be fixed on a server level. Please refer to following info on how to increase memory and script timeout time: | |
| Memory increase: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Skip to main contentSkip to toolbar | |
| About WordPress | |
| IfDelayed | |
| 81 WordPress Update, 5 Plugin Updates, 1 Theme Update, Translation Updates | |
| 00 comments awaiting moderation | |
| New | |
| View Page | |
| SEOEnter a focus keyword to calculate the SEO score | |
| Filters content by languageShow all languages | |
| Howdy, admin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React, { Component } from 'react'; | |
| import { addLocaleData, IntlProvider } from 'react-intl'; | |
| import * as ru from 'react-intl/locale-data/ru'; | |
| import * as en from 'react-intl/locale-data/en'; | |
| import languages from '../languages'; | |
| import FormComponent from '../components/formComponent'; | |
| import './FormPage.sass'; | |
| addLocaleData(...en, ...ru); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // я создал тестовый app и в нём всё работает, но в реальном проекте у меня Form - это не функция а класс | |
| import React from 'react'; | |
| import { injectIntl } from "react-intl"; | |
| const Form = ({intl}) => { | |
| return ( | |
| <div> | |
| <textarea placeholder={intl.formatMessage({ id: 'nav.placeholder' })}></textarea> | |
| </div> | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Flex grid | |
| /* ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## */ | |
| .row, .col-1, .col-2, .col-3, .col-4, .col-5, | |
| .col-6, .col-7, .col-8, .col-9, .col-10, .col-11 { | |
| box-sizing: border-box; | |
| -webkit-box-sizing: border-box; | |
| -moz-box-sizing: border-box; | |
| } |