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.
This commit is contained in:
Leo 2017-01-23 01:33:17 -06:00 committed by JC Brand
parent bd00fabe18
commit 7ddca47032

View File

@ -272,7 +272,7 @@
var div = document.createElement('div');
div.innerHTML = converse.templates.dragresize();
flyout.insertBefore(
div.firstChild,
div,
flyout.firstChild
);
}