bug fixed

This commit is contained in:
crusader 2020-12-02 17:16:32 +09:00
parent d6ad9600e3
commit cb61da113d

View File

@ -170,8 +170,8 @@ export class NotificationService {
constructor(options?: DefaultOptions) {
this.__defaultOptions = _.assignIn(defaultOptions, options);
this.__windowPooler = new WindowPooler(
!!this.__defaultOptions.windowPool!.min
? this.__defaultOptions.windowPool!.min
!!this.__defaultOptions.windowPool?.min
? this.__defaultOptions.windowPool?.min
: 0
);
this.__basePosition = {x: 0, y: 0};