952 days continuous production uptime, 40k+ tp/s single node. Original corpo Bitbucket history not included — clean archive commit.
11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
// Animations
|
|
|
|
$(function() {
|
|
$('.arrow-r').on('click', function() {
|
|
//Reset all but the current
|
|
$('.arrow-r').not(this).find('.fa-angle-down').removeClass('rotate-element');
|
|
//Rotate/reset the clicked one
|
|
$(this).find('.fa-angle-down').toggleClass('rotate-element');
|
|
})
|
|
})
|