Skip to content

Commit

Permalink
[BUGFIX] Adds missing semicolons (#1037)
Browse files Browse the repository at this point in the history
Co-authored-by: Sebastian Meyer <[email protected]>
  • Loading branch information
frank-ulrich-weber and sebastian-meyer authored Oct 4, 2023
1 parent 6d55568 commit 2978629
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Resources/Public/JavaScript/PageView/AnnotationControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,4 +340,4 @@ DlfAnnotationControl.prototype.fetchAnnotationContainersFromServer = function(an
annotationListData.push(parser.parseAnnotationList(responseJson, canvas.id));
});
return annotationListData;
}
};
2 changes: 1 addition & 1 deletion Resources/Public/JavaScript/PageView/AnnotationParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,4 +208,4 @@ DlfIiifAnnotationParser.getTargetIdentifierWithoutFragment = function(uri) {
return null;
}
return uri.split("#")[0];
}
};
2 changes: 1 addition & 1 deletion Resources/Public/JavaScript/PageView/FulltextControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ dlfViewerFullTextControl.prototype.disableFulltextSelect = function() {
}

var className = 'fulltext-visible';
$("#tx-dlf-tools-fulltext").removeClass(className)
$("#tx-dlf-tools-fulltext").removeClass(className);

if(this.activateFullTextInitially === 0) {
$("#tx-dlf-tools-fulltext")
Expand Down

0 comments on commit 2978629

Please sign in to comment.