Fix - Logo should say "Lighting" not "Lightning" (#1510)

* Fix #1505 - Logo should say "Lighting" not "Lightning"

* Address LGTM findings

* Specify an image theme using html, as fragmented approach
This commit is contained in:
LordGrey
2022-09-05 23:53:41 +02:00
committed by GitHub
parent 2008e2c3d7
commit 9f6704118e
6 changed files with 13 additions and 6 deletions

View File

@@ -183,7 +183,7 @@ $(document).ready(function () {
// Disable or enable Delete Effect Button
$('#effectsdellist').off().on('change', function () {
var value = $(this).val();
value == null ? $('#btn_edit, #btn_delete').prop('disabled', true) : "";
value == null ? $('#btn_edit').prop('disabled', true) : $('#btn_edit').prop('disabled', false);
value.startsWith("int_") ? $('#btn_delete').prop('disabled', true) : $('#btn_delete').prop('disabled', false);
});