You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var mbox = new PKUI.MESSAGE.Confirm (
"Confirmation",
"Are you sure you want to delete the file?",
"Delete*|Cancel<",
function ( buttonIndex )
{
if (buttonIndex === 0) { deleteTheFile(); }
}
);
mbox.show();
PKUTIL.delay (30000, mbox.hide); // hide after 30s