File: webviewplugin-gui-fallback.html

package info (click to toggle)
juce 8.0.10%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 78,768 kB
  • sloc: cpp: 526,464; ansic: 159,952; java: 3,038; javascript: 847; xml: 269; python: 224; sh: 167; makefile: 84
file content (39 lines) | stat: -rw-r--r-- 982 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8" />
    <title>WebViewPluginDemo</title>
    <style type="text/css">
      body {
        background-color: white;
      }
    </style>
  </head>
  <body>
    <h1>WebViewPluginDemo</h1>
    <p>
      This document is a placeholder for the GUI component of the
      WebViewPluginDemo.
    </p>
    <p>
      To build the fully fledged user interface you need to install
      <a href="https://nodejs.org">node.js</a>
    </p>
    <p>
      Then navigate into the
      <code>examples/Plugins/WebViewPluginDemoGUI</code> directory inside your JUCE
      directory, and issue the following commands.
    </p>
    <pre>
        npm install
        npm run build
        npm run zip
      </pre
    >
    <p>
      This will build the full GUI package and place it in the
      <code>Assets</code> directory.
    </p>
    <p>After this, rebuild and restart this demo.</p>
  </body>
</html>