Add JSDoc to Icinga.Events.prototype.handleAnchor()

This commit is contained in:
Eric Lippmann 2015-03-12 15:51:22 +01:00
parent b74ef2527a
commit 77b99552a4
1 changed files with 5 additions and 0 deletions

View File

@ -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) {