mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-06-11 04:37:13 +09:00
8 lines
165 B
JavaScript
8 lines
165 B
JavaScript
$(function() {
|
|
$('.reset_layout').on('click', function(e) {
|
|
var msg = $(this).data('confirmationMsg');
|
|
if (!confirm(msg)) {
|
|
e.preventDefault();
|
|
}
|
|
});
|
|
});
|