Commit 83e93958 authored by JC Brand's avatar JC Brand

Highlight info icon when room info is shown

parent 2b935fa5
...@@ -2718,6 +2718,7 @@ ...@@ -2718,6 +2718,7 @@
*/ */
// All MUC features found here: http://xmpp.org/registrar/disco-features.html // All MUC features found here: http://xmpp.org/registrar/disco-features.html
el.querySelector('span.spinner').remove(); el.querySelector('span.spinner').remove();
el.querySelector('a.room-info').classList.add('selected');
el.insertAdjacentHTML( el.insertAdjacentHTML(
'beforeEnd', 'beforeEnd',
tpl_room_description({ tpl_room_description({
...@@ -2760,6 +2761,7 @@ ...@@ -2760,6 +2761,7 @@
div_el = parent_el.querySelector('div.room-info'); div_el = parent_el.querySelector('div.room-info');
if (div_el) { if (div_el) {
u.slideIn(div_el).then(u.removeElement) u.slideIn(div_el).then(u.removeElement)
parent_el.querySelector('a.room-info').classList.remove('selected');
} else { } else {
parent_el.insertAdjacentHTML('beforeend', tpl_spinner()); parent_el.insertAdjacentHTML('beforeend', tpl_spinner());
_converse.connection.disco.info( _converse.connection.disco.info(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment