we don't neede the functions for empty stacks any more

This commit is contained in:
Stephan Bergemann 2012-06-14 12:51:27 +02:00
parent b32afd1331
commit bc6884b176
1 changed files with 0 additions and 16 deletions

View File

@ -16,14 +16,6 @@ div.visible { opacity: 0.8;}
var root = "<?php echo htmlentities($root); ?>"; var root = "<?php echo htmlentities($root); ?>";
function explode_empty(element) {
$('div', element).each(function(index, elem) {
if ($(elem).hasClass('title')) {
$(elem).addClass('visible');
}
});
}
function explode(element) { function explode(element) {
$('div', element).each(function(index, elem) { $('div', element).each(function(index, elem) {
if ($(elem).hasClass('title')) { 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) { function deplode(element) {
$('div', element).each(function(index, elem) { $('div', element).each(function(index, elem) {
if ($(elem).hasClass('title')) { if ($(elem).hasClass('title')) {