We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42c7f83 commit 6a1edc9Copy full SHA for 6a1edc9
1 file changed
client/main.js
@@ -13,6 +13,8 @@ import Theme from 'lib/theme';
13
import dark from 'themes/dark';
14
import View from './main.view';
15
16
+const DOCS_URL = "https://acode-foundation.github.io/acode-plugin-docs/";
17
+
18
window.onload = async () => {
19
Theme(dark);
20
PullToRefresh(app, () => {
@@ -23,7 +25,8 @@ window.onload = async () => {
23
25
appName='Acode'
24
26
routes={[
27
{ href: '/faqs', text: 'FAQs' },
- { href: '/plugin-docs', text: 'Plugin Docs' },
28
+ //{ href: '/plugin-docs', text: 'Plugin Docs' },
29
+ { href: DOCS_URL, text: 'Plugin Docs' },
30
{ href: '/plugins', text: 'Plugins' },
31
{ href: 'https://www.foxbiz.io', text: 'Foxbiz' },
32
{ href: '/policy', text: 'Privacy policy' },
0 commit comments