mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-03-28 06:15:17 +00:00
Remove unused email logic in login_modal controller and clean up UI
This commit is contained in:
@@ -1,8 +1,7 @@
|
||||
import { Controller } from "stimulus";
|
||||
|
||||
export default class extends Controller {
|
||||
static targets = ["background", "modal", "email"];
|
||||
static values = { email: String };
|
||||
static targets = ["background", "modal"];
|
||||
|
||||
connect() {
|
||||
if (this.hasModalTarget) {
|
||||
@@ -19,13 +18,6 @@ export default class extends Controller {
|
||||
window.dispatchEvent(new Event("login:modal:open"));
|
||||
}
|
||||
|
||||
emailOnInput(event) {
|
||||
this.emailValue = event.currentTarget.value;
|
||||
this.emailTargets.forEach((element) => {
|
||||
element.value = this.emailValue;
|
||||
});
|
||||
}
|
||||
|
||||
open = () => {
|
||||
if (!location.hash.substr(1).includes("/login")) {
|
||||
history.pushState({}, "", "#/login");
|
||||
|
||||
Reference in New Issue
Block a user