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
/* bs-4-grid.css v1 */ | |
/*! * Bootstrap v4.1.3 (https://getbootstrap.com/) */ | |
.container { | |
width: 100%; | |
padding-right: 15px; | |
padding-left: 15px; | |
margin-right: auto; | |
margin-left: auto; | |
} |
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
/* bs-4-grid-no-conflict.css v1 */ | |
/*! * Bootstrap v4.1.3 (https://getbootstrap.com/) */ | |
.bs4-container { | |
width: 100%; | |
padding-right: 15px; | |
padding-left: 15px; | |
margin-right: auto; | |
margin-left: auto; | |
} |
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
/* bs-display.css v1 */ | |
/*! | |
* Bootstrap v4.1.3 (https://getbootstrap.com/) | |
*/ | |
.d-none { | |
display: none !important; | |
} | |
.d-inline { |
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
@media all and (min-width: 576px){ | |
} | |
@media all and (min-width: 768px){ | |
} | |
@media all and (min-width: 992px){ | |
} | |
@media all and (min-width: 1200px){ |
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
// arrayUnique.js v1 | |
function arrayUnique(array) { | |
let newArray = []; | |
for (let i = 0; i < array.length; i++) { | |
if (newArray.indexOf(array[i]) == -1) { | |
newArray.push(array[i]); | |
}; | |
}; | |
return newArray; | |
}; |
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
// arrayMerge.js v1 | |
function arrayMerge(arrayA, arrayB) { | |
let newArray = []; | |
for (let i = 0; i < arrayA.length; i++) { | |
newArray.push(arrayA[i]); | |
}; | |
for (let i = 0; i < arrayB.length; i++) { | |
newArray.push(arrayB[i]); | |
}; | |
return newArray; |
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
// arrayIntersection.js v1 | |
function arrayIntersection(arrayA, arrayB) { | |
let newArray = []; | |
for (let i = 0; i < arrayA.length; i++) { | |
if (arrayB.indexOf(arrayA[i]) > -1) { | |
newArray.push(arrayA[i]); | |
}; | |
}; | |
return newArray; | |
}; |
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
// arrayRemove.js v1 | |
function arrayRemove(arrayA, arrayB) { | |
newArray = []; | |
for (let i = 0; i < arrayA.length; i++) { | |
if (arrayB.indexOf(arrayA[i]) == -1) { | |
newArray.push(arrayA[i]); | |
}; | |
}; | |
return newArray; | |
}; |
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
// simuleResize.js v1 | |
function simuleResize() { | |
window.dispatchEvent(new Event('resize')); | |
}; |
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
// json-clone.js v1.0.1 | |
function jsonClone(json) { | |
return JSON.parse(JSON.stringify(json)); | |
}; | |
if (typeof JSON.clone == 'undefined') { | |
JSON.clone = function(json) { | |
return jsonClone(json); | |
}; | |
}; |