Zeile 58 | Zeile 58 |
---|
});
// Hold event
|
});
// Hold event
|
$(this).bind("mousedown", function(e)
| $(this).on("mousedown", function(e)
|
{ // Take tid out of the id attribute id = $(this).attr('id');
| { // Take tid out of the id attribute id = $(this).attr('id');
|
Zeile 71 | Zeile 71 |
---|
inlineEditor.timeouts[tid] = setTimeout(inlineEditor.jeditableTimeout, 700, tid); });
|
inlineEditor.timeouts[tid] = setTimeout(inlineEditor.jeditableTimeout, 700, tid); });
|
$(this).bind('mouseup mouseleave', function()
| $(this).on('mouseup mouseleave', function()
|
{ window.clearTimeout(inlineEditor.timeouts[tid]); });
| { window.clearTimeout(inlineEditor.timeouts[tid]); });
|