Add JSDoc to Icinga.Events.prototype.handleAnchor()
This commit is contained in:
parent
b74ef2527a
commit
77b99552a4
|
@ -356,6 +356,11 @@
|
|||
return false;
|
||||
},
|
||||
|
||||
/**
|
||||
* Handle anchor, i.e. focus the element which is referenced by the anchor
|
||||
*
|
||||
* @param {string} query jQuery selector
|
||||
*/
|
||||
handleAnchor: function(query) {
|
||||
var $element = $(query);
|
||||
if ($element.length > 0) {
|
||||
|
|
Loading…
Reference in New Issue