Skip to content
Snippets Groups Projects

Added option to view albums

Merged Nicolay Schiøll-Johansen requested to merge link_open_albums into dev
2 files
+ 41
1
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -51,6 +51,11 @@ public class ExploreAlbums {
public Text album_desc5;
public Text album_tags5;
public Button tbar_albums;
public Button open_album4;
public Button open_album3;
public Button open_album2;
public Button open_album1;
public Button open_album;
public void switchToSearch(ActionEvent actionEvent) throws IOException {
App.setRoot("search");
@@ -87,4 +92,14 @@ public class ExploreAlbums {
public void switchToAlbums(ActionEvent actionEvent) throws IOException {
App.setRoot("explore_albums");
}
/**
* Method to open specific albums using the "Open Album" button
* @param actionEvent
* @throws IOException
*/
public void switchToViewAlbum(ActionEvent actionEvent) throws IOException {
//TODO: write method to open the specific album chosen
App.setRoot("view_album");
}
}
Loading