File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
+ # 1.0.3 - 2022-01-22
5
+ - Fix: ` PopupManager ` will no longer destroy popups after hiding if they do not belong to its root (when the destroy parameter is set to false)
6
+
4
7
# 1.0.2 - 2022-01-14
5
8
- Feature: Added possibility to name update request and cancel it
6
9
- Feature: Added possibility to cancel all pending update requests
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " pixi-yoo-ai" ,
3
- "version" : " 1.0.2 " ,
3
+ "version" : " 1.0.3 " ,
4
4
"description" : " Yoo Ai. Extensive UI library for PixiJS v6" ,
5
5
"author" : " Ilya Malanin" ,
6
6
"license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -117,7 +117,9 @@ export class PopupManager {
117
117
. play ( ) ;
118
118
} else {
119
119
gsap . killTweensOf ( popup ) ;
120
- popup . destroy ( ) ;
120
+ if ( destroy ) {
121
+ popup . destroy ( ) ;
122
+ }
121
123
onComplete ?.( ) ;
122
124
}
123
125
this . _popups . delete ( popup ) ;
You can’t perform that action at this time.
0 commit comments