Trigger events when app-settings visibility changes

This commit is contained in:
Vincent Petry 2014-08-11 16:29:15 +02:00
parent e4221869c2
commit e1a47683ef
1 changed files with 15 additions and 4 deletions

View File

@ -43,15 +43,26 @@
var areaSelector = $(button).data('apps-slide-toggle');
var area = $(areaSelector);
function hideArea() {
area.slideUp(function() {
area.trigger(new $.Event('hide'));
});
}
function showArea() {
area.slideDown(function() {
area.trigger(new $.Event('show'));
});
}
// do nothing if the area is animated
if (!area.is(':animated')) {
// button toggles the area
if (button === event.target) {
if (area.is(':visible')) {
area.slideUp();
hideArea();
} else {
area.slideDown();
showArea();
}
// all other areas that have not been clicked but are open
@ -59,7 +70,7 @@
} else {
var closest = $(event.target).closest(areaSelector);
if (area.is(':visible') && closest[0] !== area[0]) {
area.slideUp();
hideArea();
}
}
}
@ -73,4 +84,4 @@
registerAppsSlideToggle();
});
}(document, jQuery, OC));
}(document, jQuery, OC));