This file contains 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
<script> | |
/** | |
* @description Encapsule all variables and funtions | |
* @const mediaQueryHTML {Object} New DOM element with css heigth based on css break points | |
*/ | |
(function () { | |
const mediaQueryHTML = document.createElement('div'); | |
const breakPoints = { | |
0: 1, //xxs |
This file contains 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
/** | |
* @description Contact Us Component | |
* @const elements {Object} List of elements | |
* @const element {Object} DOM element | |
*/ | |
(function () { | |
/** | |
* @description Main function | |
*/ |
OlderNewer