File indexing completed on 2024-11-10 04:55:54

0001 "use strict";
0002 
0003 effects.windowClosed.connect(function (window) {
0004     animate({
0005         window: window,
0006         type: Effect.Scale,
0007         duration: 1000,
0008         from: 1.0,
0009         to: 0.0,
0010         keepAlive: false
0011     });
0012     sendTestResponse("triggered");
0013 });