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