bigfoot90

Results 27 comments of bigfoot90

Try with `$('#myModal').modal('show', $('#myButton'));` For me it works.

I can handle tranlations to italian

What you think about this solution instead? ``` js var onEndEvent = function(e) { if (list.dragEl) { e.preventDefault(); var item = list.dragEl.find('.'+list.options.itemClass); list.dragRootEl.trigger('dragEnd', [ item, // List item list.el, //...

By this way you can attach more than one listener on `dragEnd` event. You can also add or remove listeners at runtime. The code listeners are decoupled from the list...

@webtweakers For position in destination you can use `list.placeEl.index()` as fourth parameter in `dragEnd` and `move` events. ``` js list.dragRootEl.trigger('dragEnd', [ item, // List item list.el, // Source list list.dragRootEl,...

@BeFiveINFO What is the state of this?

Placing the trigger after is right, but there is no way to prevent `dragStop`. Maybe split it into two events`dragEnd` and `beforeDragEnd`. _Currently I'm using this ugly workaround:_ ``` js...

Good ;-) Just few questions/suggesstions: - How you are using the event `dragJustBeforeStart`? - Rename `dragJustBeforeStart` to `beforeDragStart` to keep the same nomenclature, and also the shorter name is better....