Version zu Ende April 2023

This commit is contained in:
2023-05-03 09:06:13 +02:00
commit f967f4698f
425 changed files with 112793 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
// >>> fubagTools.html_content.script
//***********************************************************************
//
// This file is part of the "fubagToolbox" System
// Author: Marko Seidel, Klaus Wendel
// Copyright (C) 2021, archium GmbH
//
//***********************************************************************
//
// verbiete dragging aller "anchor" <a>..</a>
function disableAnchor(){
$('a').on('dragstart', function(event){
return false;
});
}
document.onmousedown = disableAnchor;
$(document).ready(function(){
app.themechange('default')
loadIndex();
});
//