This fixes an issue where the resize handle sometimes moves a bit too far when dragging quickly. It seems like the draggable accepts some dragging even after stop is invoked.
@@ -698,7 +698,7 @@ ko.bindingHandlers.splitDraggable = {
},
stop: function () {
$.totalStorage(options.appName + "_left_panel_width", leftPanelWidth);
- positionPanels();
+ window.setTimeout(positionPanels, 100);
}
});