1.1.3 • Published 13 days ago

coreui-alert v1.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
13 days ago

CoreUI Alert

DEMO

Install with npm

$ npm install coreui-alert

Example

<button id="alert-default" class="btn btn-secondary">Default</button>
<button id="confirm-default" class="btn btn-secondary">Default</button>

<script>
    $('#alert-default').click(function () {
        CoreUI.alert.default("Alert title", "Raw denim you probably haven't heard of them jean shorts Austin?");
    });

    $('#confirm-default').click(function () {
        CoreUI.alert.default(
                "Confirm title",
                "Raw denim you probably haven't heard of them jean shorts Austin?",
                {
                    btnAcceptText: "Ok",
                    btnAcceptEvent: function () { console.log('Ok') },
                    btnRejectText: "Cancel",
                    btnRejectEvent: function () { console.log('Cancel') }
                }
        );
    });
</script>

Result

Alert

1.1.3

13 days ago

1.1.2

13 days ago

1.1.1

16 days ago

1.1.0

16 days ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

1 year ago