Skip to content

Commit

Permalink
[FIX] add missing semicolon (pkp#9905)
Browse files Browse the repository at this point in the history
  • Loading branch information
withanage authored Apr 22, 2024
1 parent 18da8e7 commit 9aadf58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/controllers/modal/ModalHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
$.pkp.controllers.modal.ModalHandler.prototype.modalOpen =
function($handledElement) {

this.uniqueModalId = "id" + Math.random().toString(16).slice(2)
this.uniqueModalId = "id" + Math.random().toString(16).slice(2);

// Trigger events
$handledElement.trigger('pkpModalOpen', [$handledElement]);
Expand Down

0 comments on commit 9aadf58

Please sign in to comment.