Eloy Sosa
Eloy Sosa

Reputation: 1

How can I wait for save before running a function?

I am using PptxGenJS and I want to run a function after I save my PowerPoint. I figured I could use the .then(...) method, because the library already uses Promise.

However when I do try something like this:

pptx.save('Sample Presentation').then(function(){
    alert('done saving');
});

The .then(..) block does not execute.

Is there some other way to get my script to wait till the save action has been fully completed?

Upvotes: 0

Views: 381

Answers (1)

Prasanth S
Prasanth S

Reputation: 535

In 'PptxGenJS' documentation also they mentioned,

pptx.save('Sample Presentation', ()=> {
           //do your stuff here
         });

Upvotes: 0

Related Questions