frio: fix dropItem() didn't work for hubzila posts
This commit is contained in:
parent
4f1f7c73ca
commit
d506b0906c
|
@ -181,11 +181,19 @@ function confirmDelete() { return confirm(aStr.delitem); }
|
||||||
|
|
||||||
function dropItem(url, object) {
|
function dropItem(url, object) {
|
||||||
var confirm = confirmDelete();
|
var confirm = confirmDelete();
|
||||||
|
|
||||||
|
//if the first character of the object is #, remove it because
|
||||||
|
// we use getElementById which don't need the #
|
||||||
|
// getElementByID selects elements even if there are special characters
|
||||||
|
// in the ID (like %) which won't work with jQuery
|
||||||
|
/// @todo ceck if we can solve this in the template
|
||||||
|
object = object.indexOf('#') == 0 ? object.substring(1) : object;
|
||||||
|
|
||||||
if(confirm) {
|
if(confirm) {
|
||||||
$('body').css('cursor', 'wait');
|
$('body').css('cursor', 'wait');
|
||||||
$(object).fadeTo('fast', 0.33, function () {
|
$(document.getElementById(object)).fadeTo('fast', 0.33, function () {
|
||||||
$.get(url).done(function() {
|
$.get(url).done(function() {
|
||||||
$(object).remove();
|
$(document.getElementById(object)).remove();
|
||||||
$('body').css('cursor', 'auto');
|
$('body').css('cursor', 'auto');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user