mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
JSDoc
This commit is contained in:
@@ -188,6 +188,12 @@ $(function()
|
|||||||
_isOpened: function () {
|
_isOpened: function () {
|
||||||
return this.element.hasClass(this.css_classes.opened);
|
return this.element.hasClass(this.css_classes.opened);
|
||||||
},
|
},
|
||||||
|
/**
|
||||||
|
* Compute and apply current position of the menu
|
||||||
|
*
|
||||||
|
* @return {void}
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
_applyPosition: function () {
|
_applyPosition: function () {
|
||||||
const oTargetElem = ('toggler' === this.options.position.target) ? $(this.options.toggler) : $(this.options.position.target);
|
const oTargetElem = ('toggler' === this.options.position.target) ? $(this.options.toggler) : $(this.options.position.target);
|
||||||
const oTargetPos = ('parent' === this.options.container) ? oTargetElem.position() : oTargetElem.offset();
|
const oTargetPos = ('parent' === this.options.container) ? oTargetElem.position() : oTargetElem.offset();
|
||||||
|
|||||||
Reference in New Issue
Block a user