Alex A. Naanou 5f47d6da7b restructured the repo moving the legacy out of the way...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2020-08-28 17:32:02 +03:00

11 lines
168 B
JavaScript
Executable File

function toggleMarkers(){
var marker = $('.v-marker, .h-marker')
if(marker.css('display') == 'none'){
marker.fadeIn()
} else {
marker.fadeOut()
}
}