des
This commit is contained in:
parent
3b3b6f1c3e
commit
2178eaf7ba
1 changed files with 3 additions and 3 deletions
|
@ -113,7 +113,7 @@ function notifyClose(id) {
|
||||||
// Remove the element after 500 milliseconds (animation takes 400)
|
// Remove the element after 500 milliseconds (animation takes 400)
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
// Use the later defined removeId function
|
// Use the later defined removeId function
|
||||||
Sakura.removeId(id);
|
Sakura.removeById(id);
|
||||||
}, 410);
|
}, 410);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -258,7 +258,7 @@ function ajaxBusyView(show, message, type) {
|
||||||
if(busyCont.style.opacity > 0) {
|
if(busyCont.style.opacity > 0) {
|
||||||
busyCont.style.opacity = busyCont.style.opacity - 0.1;
|
busyCont.style.opacity = busyCont.style.opacity - 0.1;
|
||||||
} else { // When we've reached 0 remove the container element and clear the fadeout interval
|
} else { // When we've reached 0 remove the container element and clear the fadeout interval
|
||||||
Sakura.removeId('ajaxBusy');
|
Sakura.removeById('ajaxBusy');
|
||||||
clearInterval(fadeOut);
|
clearInterval(fadeOut);
|
||||||
}
|
}
|
||||||
}, 10);
|
}, 10);
|
||||||
|
@ -593,7 +593,7 @@ function commentReply(id, session, category, action, avatar) {
|
||||||
|
|
||||||
// Remove it if it already exists
|
// Remove it if it already exists
|
||||||
if(replyBox) {
|
if(replyBox) {
|
||||||
Sakura.removeId('comment-reply-container-' + id);
|
Sakura.removeById('comment-reply-container-' + id);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue