This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html id="top" data-op-timeout="1200000" class="offcanvas-menu-open" lang="de"><head> | |
<title>WAS-LAB Dev - Overview</title> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<meta name="description" content="WAS-LAB for Modules"> | |
<!-- Ready for Smartphones and Tablets --> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=0"> | |
<!-- CSS --> | |
<style data-tippy-stylesheet="">.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:relative;background-color:#333;color:#fff;border-radius:4px;font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
googleadservices.com | |
googlesyndication.com | |
googletagservices.com | |
doubleclick.net | |
googleads.g.doubleclick.net | |
adservices.google.com | |
tpc.googlesyndication.com | |
pagead2.googlesyndication.com | |
securepubads.g.doubleclick.net | |
ads.google.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function allEventListeners(){ | |
const eventNames = Object.keys(window).filter(key => /^on/.test(key)) | |
return [...document.querySelectorAll('*'), document].flatMap((node) => eventNames | |
.filter(event => node[event]) | |
.map(event => { | |
return { | |
node, | |
event, | |
listener: (typeof node[event] === 'function') ? node[event].toString() : node[event] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<section class="section-wrapper"> | |
<div class="section-inner"> | |
<h2>Titel Kapitel X</h2> | |
<h3>Untertitel Kapitel X</h3> | |
<div class="description"> | |
<p>Kurzbeschreibung des Kapitels.</p> | |
</div> | |
</div> | |
</section> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Zusätzliche Attribute in CONFIG-TEIL | |
2. SocialMedia-Button-Plugin | |
'/*------------------------------------------------------- | |
' @description: Detail - Artikel | |
'---------------------------------------------------------*/ | |
<!---CONFIG-START---> | |
OCType|Flat | |
ShowMessages|true | |
LoginLevel|0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Version] | |
major = 1 | |
minor = 1 | |
[Common] | |
black_char = "\\/" | |
black_name = "@tmp", "@eaDir", ".SynologyWorkingDirectory", "#recycle", "desktop.ini", ".ds_store", "Icon\r", "thumbs.db", "$Recycle.Bin", "@sharebin", "System Volume Information", "Program Files", "Program Files (x86)", "ProgramData", "#snapshot" | |
max_length = 255 | |
max_path = 768 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Rename your local branch | |
git branch -m old-name new-name | |
2. Delete the old-name remote branch and push the new-name local branch | |
git push origin :old-name new-name | |
3. Reset the upstream branch for the new-name local branch | |
git push origin -u new-name |