xxjapp / xdialog

A simple and beautiful javascript dialog library
https://xxjapp.github.io/xdialog/
Apache License 2.0
26 stars 2 forks source link

how to stop drag to move dialog #5

Closed quantrpeter closed 2 months ago

quantrpeter commented 2 months ago

Hi all how to stop drag to move dialog? thanks Peter

xxjapp commented 2 months ago

Hi @quantrpeter

You can use the ondrag option to return false:

xdialog.open({
    ondrag: function() {
        return false;
    }
});