add a slideup mechanism

This commit is contained in:
Bernhard Posselt 2014-05-23 18:49:16 +02:00
parent 71e1d919de
commit db1511a11d
2 changed files with 66 additions and 0 deletions

65
core/js/app.js Normal file
View File

@ -0,0 +1,65 @@
/**
* 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';
/**
* 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 () {
// use only buttons that are already in the dom
var buttons = $('[data-apps-slide-toggle]');
$(document).click(function (event) {
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')) {
// button slides up the area
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 {
var closest = ($(event.target).closest(areaSelector));
if (area.is(':visible') && closest[0] !== area[0]) {
area.slideUp();
}
}
}
});
});
}
$(document).ready(function () {
registerAppsSlideToggle();
});
}(document, jQuery));

View File

@ -319,6 +319,7 @@ class OC {
//OC_Util::addScript( "multiselect" );
OC_Util::addScript('search', 'result');
OC_Util::addScript("oc-requesttoken");
OC_Util::addScript("app");
// avatars
if (\OC_Config::getValue('enable_avatars', true) === true) {