This commit is contained in:
Dessalines 2019-04-26 09:11:04 -07:00
parent 4d890596e5
commit 366e495582
3 changed files with 7 additions and 4 deletions

View file

@ -73,6 +73,7 @@ and goto http://localhost:8536
#### Running
```
git clone https://github.com/dessalines/lemmy
export DATABASE_URL=postgres://rrr:rrr@localhost/rrr
cd lemmy
./install.sh
# For live coding, where both the front and back end, automagically reload on any save, do:

View file

@ -129,7 +129,7 @@ export class Login extends Component<any, State> {
</div>
<input type="hidden" value={this.state.registerForm.spam_timer} />
<input type="text" class="d-none" value={this.state.spamNada} onInput={linkEvent(this, this.handleSpamNada)} />
<input type="text" class="no-s-how" value={this.state.spamNada} onInput={linkEvent(this, this.handleSpamNada)} />
<input type="text" class="no-s-hows" value={this.state.spamNada} onInput={linkEvent(this, this.handleSpamNada)} />
<div class="form-group row">
<div class="col-sm-10">
<button type="submit" class="btn btn-secondary">{this.state.registerLoading ?
@ -168,10 +168,12 @@ export class Login extends Component<any, State> {
let elapsed = endTimer - i.state.registerForm.spam_timer;
i.state.registerForm.spam_timer = elapsed;
if (elapsed > 1142 && i.state.spamNada == undefined) {
if (elapsed > 1423 && i.state.spamNada == undefined) {
WebSocketService.Instance.register(i.state.registerForm);
} else {
window.location.href = "https://github.com/dessalines/lemmy";
i.state.spamNada = "nt";
i.setState(i.state);
{/* window.location.href = "https://github.com/dessalines/lemmy"; */}
}
}

View file

@ -101,6 +101,6 @@ blockquote {
max-width: 50px;
}
.no-s-how {
.no-s-hows {
display: none;
}