summaryrefslogtreecommitdiff
path: root/html/assets/js/plugins/expand.js
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-04-17 12:12:22 +0300
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-04-17 12:12:22 +0300
commit68fc9e55e538e03f94509731ab41a0c8cf96710f (patch)
tree3edb1e81864ac3eb35ba0fe8087ed24da1b812bf /html/assets/js/plugins/expand.js
parent84b2da85a1b452922dadb6a609533b9945afe51d (diff)
downloadclassroom-68fc9e55e538e03f94509731ab41a0c8cf96710f.tar.gz
classroom-68fc9e55e538e03f94509731ab41a0c8cf96710f.tar.bz2
classroom-68fc9e55e538e03f94509731ab41a0c8cf96710f.zip
setup a real server environment (apache DocumentRoot=/var/www/public)
Diffstat (limited to 'html/assets/js/plugins/expand.js')
-rw-r--r--html/assets/js/plugins/expand.js38
1 files changed, 0 insertions, 38 deletions
diff --git a/html/assets/js/plugins/expand.js b/html/assets/js/plugins/expand.js
deleted file mode 100644
index 533e978..0000000
--- a/html/assets/js/plugins/expand.js
+++ /dev/null
@@ -1,38 +0,0 @@
-$$plugins.define('expand', ['domHelper'], function (element, options, $) {
- //triggerButton: data-trigger-expand
- //content to be initialized: data-content-expand
- const triggerButton = element.querySelector('[data-trigger-expand]'),
- triggerButtonId = triggerButton.getAttribute('data-trigger-expand'),
- content = $(`[data-content-expand='${triggerButtonId}']`);
-
- var $triggerButton = $(triggerButton);
-
- $triggerButton.on('click', function (e) {
- e.preventDefault();
- if ($triggerButton.hasClass('active')) {
- content.slideUp(300, function () {
- $triggerButton.removeClass('active');
- content.removeAttr('style');
- });
- } else {
- $triggerButton.addClass('active');
- content.slideDown(300, function () {
- if (content.find('.scrollbarShadow').length > 0 && !content.find('.scrollbarShadow').hasClass('initialized')) {
- content.find('.scrollbarShadow').addClass('initialized');
- }
- });
- }
- });
-
- if (options.closeOnCLickAway == true) {
- document.addEventListener('click', function (event) {
- if (!$triggerButton.hasClass('active') || element == event.target || $(event.target).parents().contains(element)) {
- return;
- }
- content.slideUp(300, function () {
- $triggerButton.removeClass('active');
- content.removeAttr('style');
- });
- });
- }
-});