Skip to content

Commit

Permalink
chore(docs): Remove temporarily https from configs until domain setti…
Browse files Browse the repository at this point in the history
…ngs are refresehd
  • Loading branch information
apertureless committed Jun 21, 2018
1 parent b9d4d1b commit ca9c1f4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
11 changes: 8 additions & 3 deletions docs/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ const langs = [
]

docute.init({
title: 'vue-chartjs docs',
title: 'vue-chartjs documentation',
announcement(route) {
const info = { type: 'success' }
info.html = '<a style="margin-right:10px;" class="docute-button docute-button-mini docute-button-success" href="https://www.paypal.me/apertureless/50eur" target="_blank">Donate!</a> Support vue-chartjs development by a one-time donation.'
return info
},
landing: true,
debug: true,
landing: '_landing.html',
repo: 'apertureless/vue-chartjs',
twitter: 'apertureless',
Expand All @@ -38,6 +38,11 @@ docute.init({
{
title: 'Startseite', path: '/de/'
}
],
'fr-fr': [
{
title: 'Home', path: '/fr-fr/'
}
]
},
plugins: [
Expand All @@ -50,7 +55,7 @@ docute.init({
tags: ['en', 'fr-fr', 'id', 'ja', 'pt-br', 'ru', 'zh-cn'],
// this plugin does require a url too
// where docsearch fetches contents
url: 'https://vue-chartjs.org'
url: 'http://vue-chartjs.org'
})
]
})
5 changes: 3 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
<title>vue-chartjs doc</title>
<meta name="description" content="vue-chartjs documentation with api reference and examples">
<title>vue-chartjs documentation</title>
<link rel="stylesheet" href="https://unpkg.com/docute/dist/docute.css">
</head>
<body>
<!-- don't remove this part start -->
<div id="app"></div>
<script src="https://unpkg.com/docute-evanyou"></script>
<script src="https://unpkg.com/docute/dist/docute.js"></script>
<script src="https://unpkg.com/docute/plugins/docsearch.js"></script>
<script src="https://unpkg.com/docute/dist/docute.js"></script>
<script src="./config.js"></script>
<!-- don't remove this part end -->
</body>
Expand Down

0 comments on commit ca9c1f4

Please sign in to comment.