Compare commits
2 commits
34c39349c3
...
f423824d4b
Author | SHA1 | Date | |
---|---|---|---|
f423824d4b | |||
1662d09ef6 |
8 changed files with 12 additions and 7 deletions
|
@ -73,8 +73,8 @@ public class CheckOutController {
|
|||
}
|
||||
|
||||
@FXML
|
||||
void handleTitleClick(MouseEvent event) {
|
||||
|
||||
void handleTitleClick(MouseEvent event) throws IOException {
|
||||
App.setRoot("shop");
|
||||
}
|
||||
|
||||
@FXML
|
||||
|
|
|
@ -112,7 +112,7 @@ public class LoginController {
|
|||
private Label usernameLabel;
|
||||
|
||||
@FXML
|
||||
void handleTitleClick(MouseEvent event) {
|
||||
void handleLoginButton(ActionEvent event) {
|
||||
|
||||
}
|
||||
|
||||
|
@ -121,6 +121,11 @@ public class LoginController {
|
|||
|
||||
}
|
||||
|
||||
@FXML
|
||||
void handleTitleClick(MouseEvent event) throws IOException {
|
||||
App.setRoot("shop");
|
||||
}
|
||||
|
||||
@FXML
|
||||
private void handleCartButton() throws IOException {
|
||||
App.setRoot("cart");
|
||||
|
|
|
@ -47,8 +47,8 @@ public class RegisterController {
|
|||
private Label footerCopyText;
|
||||
|
||||
@FXML
|
||||
void handleTitleClick(MouseEvent event) {
|
||||
|
||||
void handleTitleClick(MouseEvent event) throws IOException {
|
||||
App.setRoot("shop");
|
||||
}
|
||||
|
||||
@FXML
|
||||
|
|
|
@ -38,8 +38,8 @@ public class ShopController {
|
|||
}
|
||||
|
||||
@FXML
|
||||
void handleTitleClick(MouseEvent event) {
|
||||
|
||||
void handleTitleClick(MouseEvent event) throws IOException {
|
||||
App.setRoot("shop");
|
||||
}
|
||||
|
||||
@FXML
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue