mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-09-01 06:40:37 +00:00
spelling: javascript
This commit is contained in:
parent
592a4ffa90
commit
a99d928630
2 changed files with 3 additions and 3 deletions
|
|
@ -83,7 +83,7 @@ Building creates the following directories under `build/`:
|
|||
The directories have subdirectories for intermediate output:
|
||||
- `ts/`: Autogenerated Typescript files
|
||||
- `js/`: The output from compiling Typescript code
|
||||
- `browserified/`: The output of browserifying the Javascript code
|
||||
- `browserified/`: The output of browserifying the JavaScript code
|
||||
|
||||
To clean up:
|
||||
```
|
||||
|
|
|
|||
|
|
@ -124,13 +124,13 @@ export function runOauth(): OauthSession {
|
|||
}
|
||||
});
|
||||
|
||||
// This is the callback for the DigitalOcean callback. It serves Javascript that will
|
||||
// This is the callback for the DigitalOcean callback. It serves JavaScript that will
|
||||
// extract the access token from the hash and post it back to our http server.
|
||||
app.get('/', (request, response) => {
|
||||
response.send(`<html>
|
||||
<head><title>Authenticating...</title></head>
|
||||
<body>
|
||||
<noscript>You need to enable Javascript in order for the DigitalOcean authentication to work.</noscript>
|
||||
<noscript>You need to enable JavaScript in order for the DigitalOcean authentication to work.</noscript>
|
||||
<form id="form" method="POST">
|
||||
<input id="params" type="hidden" name="params"></input>
|
||||
</form>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue