mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-07 15:54:26 +02:00
Fix code style in itemFiler()
This commit is contained in:
parent
258476e14f
commit
9e3936b151
2 changed files with 23 additions and 24 deletions
|
@ -199,8 +199,7 @@ function enableOnUser(){
|
|||
}
|
||||
|
||||
function itemFiler(id) {
|
||||
|
||||
var bordercolor = $("input").css("border-color");
|
||||
const bordercolor = $("input").css("border-color");
|
||||
|
||||
$.get('filer/', function (data) {
|
||||
$.colorbox({html: data});
|
||||
|
@ -213,7 +212,7 @@ function enableOnUser(){
|
|||
|
||||
$("#filer_save").click(function (e) {
|
||||
e.preventDefault();
|
||||
reply = $("#id_term").val();
|
||||
const reply = $("#id_term").val();
|
||||
if (reply && reply.length) {
|
||||
commentBusy = true;
|
||||
$('body').css('cursor', 'wait');
|
||||
|
@ -229,7 +228,6 @@ function enableOnUser(){
|
|||
return false;
|
||||
});
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
function jotClearLocation() {
|
||||
|
|
|
@ -296,7 +296,7 @@
|
|||
}
|
||||
|
||||
function itemFiler(id) {
|
||||
var bordercolor = $("input").css("border-color");
|
||||
const bordercolor = $("input").css("border-color");
|
||||
|
||||
$.get('filer/', function (data) {
|
||||
$.colorbox({html: data});
|
||||
|
@ -309,7 +309,7 @@
|
|||
|
||||
$("#filer_save").click(function (e) {
|
||||
e.preventDefault();
|
||||
reply = $("#id_term").val();
|
||||
const reply = $("#id_term").val();
|
||||
if (reply && reply.length) {
|
||||
commentBusy = true;
|
||||
$('body').css('cursor', 'wait');
|
||||
|
@ -323,6 +323,7 @@
|
|||
} else {
|
||||
$("#id_term").css("border-color", "#FF0000");
|
||||
}
|
||||
|
||||
return false;
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue