Close article panel while refreshing feed list

Hi everyone,

TT-RSS is a fantastic tool. I have a few proposal that might interest some of you.

First and foremost, I don’t really like that the Article panel stays open even after refreshing the feed list. So I simply add one line to feedlist.js.

diff --git a/js/feedlist.js b/js/feedlist.js
index 879b52d..86dd83d 100644
--- a/js/feedlist.js
+++ b/js/feedlist.js
@@ -179,6 +179,7 @@ function viewfeed(params) {
 				}
 			} });
 	}, timeout_ms); // Wait 250ms
+	closeArticlePanel();
 
 }

I know it is irrelevant if you’re using the combined mode, but it shouldn’t have any side effect.

See if you like it. Regards.
Amha