Files
preview_sites/templates/plumber/Documentation/Help/js/custom.js
T
2026-07-20 05:38:53 -05:00

28 lines
696 B
JavaScript
Executable File

// © Copyright 2015 - Archi by Designesia
jQuery(document).ready(function() {
'use strict'; // use strict mode
jQuery(".expand .content").hide();
// expand box
jQuery(".expand .title").on( "click", function() {
var iteration = $(this).data('iteration') || 1;
switch (iteration) {
case 1:
$(this).parent().find('.content').slideToggle();
break;
case 2:
$(this).parent().find('.content').slideToggle();
break;
}
iteration++;
if (iteration > 2) iteration = 1;
$(this).data('iteration', iteration);
});
});