Version zu Ende April 2023
This commit is contained in:
21
static/module/index_script.txt
Normal file
21
static/module/index_script.txt
Normal 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();
|
||||
});
|
||||
//
|
||||
Reference in New Issue
Block a user