
* fix: added visual feed back for mass rom matching * chore(deps): EmulatorJS version bump * chore(deps): nuget package version bump * feat: added cover art to the emulator * ci: updated .gitignore * ci: remove .DS_Store files * feat: updated the about box, and labeled the IGDB user score * chore(deps): EmulatorJS version bump * feat: start of collections build, and styling changes * fix: updated PlatformMap.json file with more platforms and fixed SNES extensions * feat: more progress on romsets * doc: updated readme to include new screenshots and discord link * fix: repairs an issue where the author column in signatures was too narrow * chore(deps): EmulatorJS version bump * feat: Collection build code mostly complete * fix: renamed collection classes to avoid conflicts in Swagger * Re-wrote collection builder to correct major bugs and performance * Completed collection builder and zipper * API changes completed * Fixed some last minute Collections API bugs * Collections mostly complete. Todo: delete button * Completed collections build
27 lines
900 B
HTML
27 lines
900 B
HTML
<p>Are you sure you want to delete this collection?</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="deleteCollection();">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 deleteCollection() {
|
|
ajaxCall(
|
|
'/api/v1/Collections/' + subModalVariables,
|
|
'DELETE',
|
|
function (result) {
|
|
GetCollections();
|
|
closeSubDialog();
|
|
},
|
|
function (error) {
|
|
GetCollections();
|
|
closeSubDialog();
|
|
}
|
|
);
|
|
}
|
|
</script> |