Commit 7ddca470 authored by Leo's avatar Leo Committed by JC Brand

Render all drag resize handles in ChatRoomView (#758)

The ChatRoomView renderDragResizeHandles is only rendering the top resize handle (<div class="dragresize dragresize-top"></div>). the insert was only inserting the first child of the dragresize template, which has 3 children. Modified to insert the whole the div that the dragresize template gets inserted into.
parent bd00fabe
......@@ -272,7 +272,7 @@
var div = document.createElement('div');
div.innerHTML = converse.templates.dragresize();
flyout.insertBefore(
div.firstChild,
div,
flyout.firstChild
);
}
......
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