I'm using jQuery Sortable library to create rearrangeable nested <ol> elements (do not confuse with jQuery UI sortable), when i try to execute code (console.log) in the onDrop event, the page freezes, and the dragged <li> element become transparent and floats on the page over the others elements (similar to position: absolute and opacity: 0.5)
Working example: https://johnny.github.io/jquery-sortable/#features
My code: http://jsfiddle.net/xdjn2wqp/2/
I wasn't getting a page freeze when testing your code, but the element that was dragged never got the .dragged class removed from it after dropping. Maybe you meant it appeared to freeze.
Either way when executing your code you get an error on the console
And looking at the code, the _super method is defined to have up to 4 arguments, but looks like it requires just 2
Non-minified version
You however only pass 1, item. And from the documentation page all the examples that use
_super()use two arguments, the item and then the containerSo once you pass in
containeras well, the problem not longer exists