@progress/kendo-angular-dialog
Version:
Dialog Package for Angular
19 lines (18 loc) • 684 B
JavaScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* @hidden
*/
export const createPlayer = (builder, animation, animatedElement) => {
const factory = builder.build(animation);
let player = factory.create(animatedElement);
player.onDone(() => {
if (player) {
player.destroy();
player = null;
}
});
return player;
};