mirror of
https://github.com/overte-org/overte.git
synced 2025-06-20 22:41:02 +02:00
Fix missing semicolon in content.js
This commit is contained in:
parent
5485f60677
commit
fdeae4c11a
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ $(document).ready(function(){
|
||||||
|
|
||||||
$('body').on('click', '.' + BACKUP_DOWNLOAD_LINK_CLASS, function(ev) {
|
$('body').on('click', '.' + BACKUP_DOWNLOAD_LINK_CLASS, function(ev) {
|
||||||
ev.preventDefault();
|
ev.preventDefault();
|
||||||
var backupID = $(this).data('backup-id')
|
var backupID = $(this).data('backup-id');
|
||||||
|
|
||||||
showSpinnerAlert("Preparing backup...");
|
showSpinnerAlert("Preparing backup...");
|
||||||
function checkBackupStatus() {
|
function checkBackupStatus() {
|
||||||
|
|
Loading…
Reference in a new issue