952 days continuous production uptime, 40k+ tp/s single node. Original corpo Bitbucket history not included — clean archive commit.
7 lines
163 B
JavaScript
7 lines
163 B
JavaScript
/* ROTATING CARDS */
|
|
$('.rotate-btn').on('click', function () {
|
|
var cardId = $(this).attr('data-card');
|
|
$('#' + cardId).toggleClass('flipped');
|
|
|
|
});
|