nextcloud/core/js/apps.js

64 lines
1.9 KiB
JavaScript
Raw Normal View History

2014-05-23 20:49:16 +04:00
/**
* ownCloud - core
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
* @author Bernhard Posselt <dev@bernhard-posselt.com>
* @copyright Bernhard Posselt 2014
*/
(function (document, $) {
'use strict';
2014-05-23 20:49:16 +04:00
/**
* Provides a way to slide down a target area through a button and slide it
* up if the user clicks somewhere else. Used for the news app settings and
* add new field.
*
* Usage:
* <button data-apps-slide-toggle=".slide-area">slide</button>
* <div class=".slide-area" class="hidden">I'm sliding up</div>
*/
var registerAppsSlideToggle = function () {
$(document).click(function (event) {
var buttons = $('[data-apps-slide-toggle]');
2014-05-23 20:49:16 +04:00
buttons.each(function (index, button) {
var areaSelector = $(button).data('apps-slide-toggle');
var area = $(areaSelector);
// do nothing if the area is animated
if (!area.is(':animated')) {
2014-05-23 21:14:28 +04:00
// button toggles the area
2014-05-23 20:49:16 +04:00
if (button === event.target) {
if (area.is(':visible')) {
area.slideUp();
} else {
area.slideDown();
}
// all other areas that have not been clicked but are open
// should be slid up
} else {
2014-05-23 21:14:28 +04:00
var closest = $(event.target).closest(areaSelector);
2014-05-23 20:49:16 +04:00
if (area.is(':visible') && closest[0] !== area[0]) {
area.slideUp();
}
}
}
});
});
2014-05-23 23:28:34 +04:00
};
2014-05-23 20:49:16 +04:00
$(document).ready(function () {
registerAppsSlideToggle();
});
}(document, jQuery));