mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-12 00:27:21 +02:00
Update Site.js to use template strings
This commit is contained in:
parent
0f6800df10
commit
ef5c4f83a2
1 changed files with 5 additions and 13 deletions
|
@ -88,16 +88,13 @@ class Site extends React.Component {
|
|||
{this.props.config.gaTrackingId &&
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html:
|
||||
`
|
||||
__html: `
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
||||
|
||||
ga('create', '` +
|
||||
this.props.config.gaTrackingId +
|
||||
`', 'auto');
|
||||
ga('create', '${this.props.config.gaTrackingId}', 'auto');
|
||||
ga('send', 'pageview');
|
||||
`
|
||||
}}
|
||||
|
@ -105,15 +102,10 @@ class Site extends React.Component {
|
|||
{this.props.config.algolia &&
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html:
|
||||
`
|
||||
__html: `
|
||||
var search = docsearch({
|
||||
apiKey: '` +
|
||||
this.props.config.algolia.apiKey +
|
||||
`',
|
||||
indexName: '` +
|
||||
this.props.config.algolia.indexName +
|
||||
`',
|
||||
apiKey: '${this.props.config.algolia.apiKey}',
|
||||
indexName: '${this.props.config.algolia.indexName}',
|
||||
inputSelector: '#search_input_react'
|
||||
});
|
||||
`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue