Ancora update dei nuGet packages (bootstrap, popper...)

This commit is contained in:
Samuele E. Locatelli
2020-01-21 10:16:11 +01:00
parent 8c80435f5c
commit 4d34224562
115 changed files with 5530 additions and 1278 deletions
@@ -0,0 +1,15 @@
/**
* Get the opposite placement variation of the given one
* @method
* @memberof Popper.Utils
* @argument {String} placement variation
* @returns {String} flipped placement variation
*/
export default function getOppositeVariation(variation) {
if (variation === 'end') {
return 'start';
} else if (variation === 'start') {
return 'end';
}
return variation;
}