update snapshot and format code

This commit is contained in:
sunilyadav840
2021-03-09 17:00:37 +05:30
parent f6f787817b
commit 0b03202844
2 changed files with 12 additions and 1 deletions

View File

@@ -42,7 +42,10 @@ export class Splitter {
}
public initialize() {
if (document.getElementById(this.splitterId) !== undefined && document.getElementById(this.leftSideId) !== undefined) {
if (
document.getElementById(this.splitterId) !== undefined &&
document.getElementById(this.leftSideId) !== undefined
) {
this.splitter = <HTMLElement>document.getElementById(this.splitterId);
this.leftSide = <HTMLElement>document.getElementById(this.leftSideId);
}