working drag n drop
parent
4e17e4d8ca
commit
b6f40043da
|
@ -5276,6 +5276,34 @@ function Ace2Inner(){
|
||||||
|
|
||||||
bindTheEventHandlers();
|
bindTheEventHandlers();
|
||||||
|
|
||||||
|
var imageBeingDragged = null;
|
||||||
|
|
||||||
|
$(root)
|
||||||
|
.bind('dragstart', function(event){
|
||||||
|
imageBeingDragged = event.target;
|
||||||
|
top.console.log('dragstart', event.target);
|
||||||
|
})
|
||||||
|
.bind('drop',function(event){
|
||||||
|
top.console.log('drop', event.target);
|
||||||
|
top.console.log('remove', imageBeingDragged);
|
||||||
|
$(imageBeingDragged).html(" ");
|
||||||
|
$(imageBeingDragged).parent().html(" ");
|
||||||
|
imageBeingDragged = null;
|
||||||
|
})
|
||||||
|
.bind('dragend',function(event){
|
||||||
|
// destroy original..
|
||||||
|
top.console.log('dragend', event.target);
|
||||||
|
$(imageBeingDragged).html(" ");
|
||||||
|
$(imageBeingDragged).parent().html(" ");
|
||||||
|
imageBeingDragged = null;
|
||||||
|
});
|
||||||
|
|
||||||
|
/*
|
||||||
|
$(root).on('mouseup', 'img', function(e){
|
||||||
|
top.console.log("NEW WIDTH mouseup", e.target.width);
|
||||||
|
top.console.log("All done");
|
||||||
|
});
|
||||||
|
*/
|
||||||
});
|
});
|
||||||
|
|
||||||
hooks.callAll('aceInitialized', {
|
hooks.callAll('aceInitialized', {
|
||||||
|
|
Loading…
Reference in New Issue