mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-11 23:35:50 +00:00
9 lines
248 B
JavaScript
9 lines
248 B
JavaScript
function make_code_expandable() {
|
|
$('code').dblclick(function(eo) {
|
|
$(eo.target).toggleClass('expanded');
|
|
});
|
|
$('code').attr('title', 'Double-click to expand/collapse');
|
|
}
|
|
|
|
$(document).on('flatdoc:ready', make_code_expandable);
|