Skip to content

Commit 65d23ae

Browse files
committed
fix semicolon
1 parent 304b502 commit 65d23ae

1 file changed

Lines changed: 13 additions & 15 deletions

File tree

src/v8.ts

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
/// <reference path="../window.d.ts" />
2-
31
/**
42
* Stores constants for the window types supported by the CSXS infrastructure.
53
*/
@@ -617,7 +615,7 @@ export default class CSInterface {
617615
const extensionsStr = window.__adobe_cep__.getExtensions(extensionIdsStr);
618616

619617
return JSON.parse(extensionsStr);
620-
};
618+
}
621619

622620

623621
/**
@@ -629,7 +627,7 @@ export default class CSInterface {
629627
*/
630628
getNetworkPreferences(): object {
631629
return JSON.parse(window.__adobe_cep__.getNetworkPreferences());
632-
};
630+
}
633631

634632

635633
/**
@@ -672,7 +670,7 @@ export default class CSInterface {
672670
}
673671
}
674672
return resourceBundle;
675-
};
673+
}
676674

677675
/**
678676
* Writes installation information to a file.
@@ -811,7 +809,7 @@ export default class CSInterface {
811809
*/
812810
getCurrentApiVersion(): ApiVersion {
813811
return JSON.parse(window.__adobe_cep__.getCurrentApiVersion());
814-
};
812+
}
815813

816814
/**
817815
* Set panel flyout menu by an XML.
@@ -900,7 +898,7 @@ export default class CSInterface {
900898
*/
901899
setContextMenu(menu: string, callback: (menuItemID: string) => void): void {
902900
window.__adobe_cep__.invokeAsync("setContextMenu", menu, callback);
903-
};
901+
}
904902

905903
/**
906904
* Set context menu by JSON string.
@@ -973,7 +971,7 @@ export default class CSInterface {
973971
*/
974972
setContextMenuByJSON(menu: string, callback: (menuItemID: string) => void): void {
975973
window.__adobe_cep__.invokeAsync("setContextMenuByJSON", menu, callback);
976-
};
974+
}
977975

978976

979977
/**
@@ -988,7 +986,7 @@ export default class CSInterface {
988986
updateContextMenuItem(menuItemID: string, enabled: boolean, checked: boolean): void {
989987
const itemStatus = new ContextMenuItemStatus(menuItemID, enabled, checked);
990988
window.__adobe_cep__.invokeSync("updateContextMenuItem", JSON.stringify(itemStatus));
991-
};
989+
}
992990

993991

994992
/**
@@ -1000,7 +998,7 @@ export default class CSInterface {
1000998
*/
1001999
isWindowVisible(): boolean {
10021000
return window.__adobe_cep__.invokeSync("isWindowVisible", "");
1003-
};
1001+
}
10041002

10051003
/**
10061004
* Resize extension's content to the specified dimensions.
@@ -1022,7 +1020,7 @@ export default class CSInterface {
10221020
*/
10231021
resizeContent(width: number, height: number): void {
10241022
window.__adobe_cep__.resizeContent(width, height);
1025-
};
1023+
}
10261024

10271025

10281026
/**
@@ -1038,7 +1036,7 @@ export default class CSInterface {
10381036
*/
10391037
registerInvalidCertificateCallback(callback: () => void): void {
10401038
return window.__adobe_cep__.registerInvalidCertificateCallback(callback);
1041-
};
1039+
}
10421040

10431041
/**
10441042
* Register an interest in some key events to prevent them from being sent to the host application.
@@ -1083,7 +1081,7 @@ export default class CSInterface {
10831081
*/
10841082
registerKeyEventsInterest(keyEventsInterest: string): void {
10851083
return window.__adobe_cep__.registerKeyEventsInterest(keyEventsInterest);
1086-
};
1084+
}
10871085

10881086

10891087
/**
@@ -1096,7 +1094,7 @@ export default class CSInterface {
10961094
*/
10971095
setWindowTitle(title: string): void {
10981096
window.__adobe_cep__.invokeSync("setWindowTitle", title);
1099-
};
1097+
}
11001098

11011099

11021100
/**
@@ -1109,5 +1107,5 @@ export default class CSInterface {
11091107
*/
11101108
getWindowTitle(): string {
11111109
return window.__adobe_cep__.invokeSync("getWindowTitle", "");
1112-
};
1110+
}
11131111
}

0 commit comments

Comments
 (0)