blackgate / bg-splitter

Simple pane splitter for angular.js
http://blackgate.github.io/bg-splitter/
MIT License
190 stars 61 forks source link

when dragging the handler the handler size should also be used. #18

Open jcompagner opened 9 years ago

jcompagner commented 9 years ago

i patched it by using in the vertical mode:

pane2.elem.css('top', (pos+handler[0].clientHeigth) + 'px');

and in the horizontal mode:

pane2.elem.css('left', (pos+handler[0].clientWidth) + 'px');