Merge pull request #3510 from xt0rted/bootbox-fix

Add missing semicolons
This commit is contained in:
Horiuchi_H
2015-01-22 10:07:42 +09:00
+2 -2
View File
@@ -26,8 +26,8 @@ interface BootboxButton {
}
interface BootboxDialogOptions {
message: string | Element
title?: string | Element
message: string | Element;
title?: string | Element;
callback?: (result: boolean) => any;
show?: boolean;
onEscape?: () => any;