18 lines
695 B
HTML
18 lines
695 B
HTML
<p>Are you sure you want to delete this ROM?</p>
|
|
<p><strong>Warning:</strong> This cannot be undone!</p>
|
|
<div style="width: 100%; text-align: center;">
|
|
<div style="display: inline-block; margin-right: 20px;">
|
|
<button class="redbutton" value="Delete" onclick="deleteRom();">Delete</button>
|
|
</div>
|
|
<div style="display: inline-block; margin-left: 20px;">
|
|
<button value="Cancel" onclick="closeSubDialog();">Cancel</button>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
function deleteRom() {
|
|
ajaxCall('/api/v1/Games/' + gameId + '/roms/' + modalVariables, 'DELETE', function (result) {
|
|
window.location.reload();
|
|
});
|
|
}
|
|
</script> |