Skip to content

Commit

Permalink
JSDoc style fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
demiankatz committed Dec 19, 2024
1 parent e1eddb6 commit 7ba08e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions themes/bootstrap3/js/identifierLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ VuFind.register('identifierLinks', function identifierLinks() {

/**
* Event handler to embed identifier links in a container.
* @param {Event} params
* @param {Event} params Event triggering handler
*/
function updateContainer(params) {
embedIdentifierLinks(params.container);
Expand All @@ -82,7 +82,6 @@ VuFind.register('identifierLinks', function identifierLinks() {
* Apply identifier-based links. This can be called with a container e.g. when
* combined results fetched with AJAX are loaded.
* @param {object} _container Container to apply links to
* @returns {object} Container exposing public methods
*/
function init(_container) {
var container = unwrapJQuery(_container || document.body);
Expand Down
3 changes: 1 addition & 2 deletions themes/bootstrap5/js/identifierLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ VuFind.register('identifierLinks', function identifierLinks() {

/**
* Event handler to embed identifier links in a container.
* @param {Event} params
* @param {Event} params Event triggering handler
*/
function updateContainer(params) {
embedIdentifierLinks(params.container);
Expand All @@ -82,7 +82,6 @@ VuFind.register('identifierLinks', function identifierLinks() {
* Apply identifier-based links. This can be called with a container e.g. when
* combined results fetched with AJAX are loaded.
* @param {object} _container Container to apply links to
* @returns {object} Container exposing public methods
*/
function init(_container) {
var container = unwrapJQuery(_container || document.body);
Expand Down

0 comments on commit 7ba08e1

Please sign in to comment.