Broke agenda and minutes out into folders of markdown.

This commit is contained in:
2025-06-23 10:56:12 +10:00
parent 18c9aea41a
commit 1f8b8d27c3
161 changed files with 13339 additions and 32 deletions

22
index.js Executable file
View File

@@ -0,0 +1,22 @@
$(document).ready(function () {
var nextCtl = $('#vars').attr('nextCtl');
var c = $('button.accordion-button[data-bs-target="#ctl' + nextCtl + '"]');
$(c).click();
$('button[action]').click(function() {
var action = $(this).attr('action');
var url = null;
var target = action;
if ( action == 'jitsi' ) {
url = 'https://meet.homelabbrisbane.com.au/';
}
if ( action == 'map' ) {
url = 'https://www.google.com/maps/place/' + $(this).attr('coordinates');
}
if ( action == 'copy' ) {
navigator.clipboard.writeText( $(this).attr('value') );
}
if ( url != null ) {
window.open( url, target );
}
});
});