Skip to content

Commit 640a16d

Browse files
author
James Leigh
committed
issue #640: Fix indentation
Signed-off-by: James Leigh <james.leigh@ontotext.com>
1 parent 7fafede commit 640a16d

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

core/http/workbench/src/main/webapp/scripts/create.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/http/workbench/src/main/webapp/scripts/delete.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/http/workbench/src/main/webapp/scripts/ts/create.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ function checkOverwrite() {
4141
if (submit) {
4242
$("form[action='create']").submit();
4343
}
44-
}
44+
}
4545
});
4646
}
4747

core/http/workbench/src/main/webapp/scripts/ts/delete.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
function checkIsSafeToDelete(event) {
1414
var id = $('#id').val();
1515
var submitForm = false;
16-
var feedback = $('#delete-feedback');
16+
var feedback = $('#delete-feedback');
1717
$
1818
.ajax({
1919
dataType : 'json',
@@ -35,14 +35,14 @@ function checkIsSafeToDelete(event) {
3535
}
3636
},
3737
success : function(data) {
38-
feedback.text('');
38+
feedback.text('');
3939
submitForm = data.safe;
4040
if (!submitForm) {
4141
submitForm = confirm('WARNING: You are about to delete a repository that has been proxied by another repository!');
4242
}
43-
if (submitForm) {
44-
$(event.target).closest('form')[0].submit();
45-
}
43+
if (submitForm) {
44+
$(event.target).closest('form')[0].submit();
45+
}
4646
}
4747
});
4848
return false;

0 commit comments

Comments
 (0)