spelling: javascript

This commit is contained in:
Josh Soref 2018-11-25 17:13:58 -05:00
parent 592a4ffa90
commit a99d928630
2 changed files with 3 additions and 3 deletions

View file

@ -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:
```

View file

@ -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>