From 77562b1734154cfb913ad06494156997a26bdbf6 Mon Sep 17 00:00:00 2001 From: Jonas Heinrich Date: Mon, 13 Aug 2018 17:01:24 +0200 Subject: [PATCH] added hash url and fix styling issue player area --- CHANGELOG.md | 2 ++ css/main.css | 5 +++++ js/main.js | 12 +++++++++--- templates/main.php | 15 ++++++++------- 4 files changed, 24 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be9d888..4029a71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## 0.6.2 – 2018-08-11 ### Fixed +- Fix styling issue (overflow hidden) player area + [#65](https://git.project-insanity.org/onny/nextcloud-app-radio/issues/65) @onny - Fix styling issue colum width on Chrome browsers [#37](https://git.project-insanity.org/onny/nextcloud-app-radio/issues/37) @onny - Remember last menu state diff --git a/css/main.css b/css/main.css index f841d19..2ab175c 100644 --- a/css/main.css +++ b/css/main.css @@ -467,3 +467,8 @@ table td { overflow: hidden; text-overflow: ellipsis; } + +#app-settings { + overflow: hidden; + margin-bottom: 10px; +} diff --git a/js/main.js b/js/main.js index 0128b2c..febe554 100644 --- a/js/main.js +++ b/js/main.js @@ -102,15 +102,18 @@ $(function(){ }); /* Click on menus */ - $('a.nav-icon-files').click(function() { + $('a.nav-icon-files').click(function(e) { + e.preventDefault(); switch_menu(0); }); - $('a.nav-icon-recent').click(function() { + $('a.nav-icon-recent').click(function(e) { + e.preventDefault(); switch_menu(1); }); - $('a.nav-icon-favorites').click(function() { + $('a.nav-icon-favorites').click(function(e) { + e.preventDefault(); switch_menu(2); }); @@ -347,14 +350,17 @@ $(function(){ save_menu_state(state) switch (state) { case 0: + history.pushState("", "", "#top"); $('li.nav-files').addClass('active'); radio_query(1); break; case 1: + history.pushState("", "", "#recent"); $('li.nav-recent').addClass('active'); radio_query(2); break; case 2: + history.pushState("", "", "#favorites"); $('li.nav-favorites').addClass('active'); action_load_favorites(); break; diff --git a/templates/main.php b/templates/main.php index 49a5316..31ad2cc 100755 --- a/templates/main.php +++ b/templates/main.php @@ -7,32 +7,33 @@
-
+
+ +

-