From: Stephan Bergemann Date: Thu, 14 Jun 2012 10:51:27 +0000 (+0200) Subject: we don't neede the functions for empty stacks any more X-Git-Tag: v4.5.0beta1~74^2~420^2~7^2~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=bc6884b17623cc7aaf008fba6a162b551aeb7adc;p=nextcloud-server.git we don't neede the functions for empty stacks any more --- diff --git a/apps/gallery/templates/index.php b/apps/gallery/templates/index.php index 0eda1ca0501..148c3df2259 100644 --- a/apps/gallery/templates/index.php +++ b/apps/gallery/templates/index.php @@ -16,14 +16,6 @@ div.visible { opacity: 0.8;} var root = ""; -function explode_empty(element) { - $('div', element).each(function(index, elem) { - if ($(elem).hasClass('title')) { - $(elem).addClass('visible'); - } - }); -} - function explode(element) { $('div', element).each(function(index, elem) { if ($(elem).hasClass('title')) { @@ -36,14 +28,6 @@ function explode(element) { }); } -function deplode_empty(element) { - $('div', element).each(function(index, elem) { - if ($(elem).hasClass('title')) { - $(elem).removeClass('visible'); - } - }); -} - function deplode(element) { $('div', element).each(function(index, elem) { if ($(elem).hasClass('title')) {