sugarlabs / sugar-web

Components for Sugar web activities
Apache License 2.0
13 stars 32 forks source link

Add a confirmation alert to the activity class #124

Closed godiard closed 9 years ago

godiard commented 9 years ago

Have two buttons Ok, and Cancel and returns a boolean, with true if the Ok button was pressed.

Example of use:

activity.showConfirmationAlert('ATENTION', 'Do you want ....?',
    'Yes', 'No', function(result) {
        if (result) {
            DoYourAction;
        };
    });
samdroid-apps commented 9 years ago

Looks good to me. It's probably a feature, but does it even need discussion? It's just porting something.

I'll merge.

godiard commented 9 years ago

Thanks. Maybe small for a feature, more than nothing is continue the work of implement web equivalents to the sugar api.

On Thu, Oct 1, 2015 at 8:47 PM, Sam notifications@github.com wrote:

Merged #124 https://github.com/sugarlabs/sugar-web/pull/124.

— Reply to this email directly or view it on GitHub https://github.com/sugarlabs/sugar-web/pull/124#event-424811340.

Gonzalo Odiard