22 lines
611 B
Plaintext
22 lines
611 B
Plaintext
|
// >>> 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();
|
||
|
});
|
||
|
//
|