Manos Chorianopoulos

Added navigation_back event listener at LoyaltyHistoryVC

...@@ -74,6 +74,13 @@ import SwiftEventBus ...@@ -74,6 +74,13 @@ import SwiftEventBus
74 } 74 }
75 } 75 }
76 76
77 + SwiftEventBus.onBackgroundThread(self, name: "navigation_back") { result in
78 +
79 + DispatchQueue.main.async {
80 + self.navigationController?.popViewController(animated: true)
81 + }
82 + }
83 +
77 // setBackButton() 84 // setBackButton()
78 setBackButton("ic_close_3") 85 setBackButton("ic_close_3")
79 setNavigationTitle("Ιστορικό") 86 setNavigationTitle("Ιστορικό")
......