Refresh primi NuGet packages (jquery, bootstrap)

This commit is contained in:
Samuele E. Locatelli
2020-01-28 10:17:12 +01:00
parent 47a7ae4dd6
commit c0489f9d0d
289 changed files with 17111 additions and 15805 deletions
@@ -0,0 +1,10 @@
/**
* Returns the reference node of the reference object, or the reference object itself.
* @method
* @memberof Popper.Utils
* @param {Element|Object} reference - the reference element (the popper will be relative to this)
* @returns {Element} parent
*/
export default function getReferenceNode(reference) {
return reference && reference.referenceNode ? reference.referenceNode : reference;
}