mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:02:54 +00:00
more tweakage. stylesheet and jot-header
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
This commit is contained in:
parent
d98ca8e127
commit
5f77aff486
2 changed files with 32 additions and 29 deletions
|
@ -104,34 +104,6 @@ function initEditor(cb) {
|
|||
$(".jothidden").show();
|
||||
|
||||
if (typeof cb!="undefined") { cb(); }
|
||||
|
||||
// character count part deux
|
||||
//
|
||||
// get # of chars
|
||||
var textlen = $('#profile-jot-text').val().length();
|
||||
$('#character-counter').html(textlen);
|
||||
|
||||
$('#profile-jot-text').keyup(function() {
|
||||
$('#character-counter').removeClass('jothidden');
|
||||
if(textlen <= 140) {
|
||||
$('#character-counter').removeClass('red');
|
||||
$('#character-counter').removeClass('orange');
|
||||
$('#character-counter').addClass('grey');
|
||||
}
|
||||
if((textlen > 140) && (textlen <= 420)) {
|
||||
$('#character-counter').removeClass('grey');
|
||||
$('#character-counter').removeClass('red');
|
||||
$('#character-counter').addClass('orange');
|
||||
}
|
||||
if(textlen > 420) {
|
||||
$('#character-counter').removeClass('grey');
|
||||
$('#character-counter').removeClass('orange');
|
||||
$('#character-counter').addClass('red');
|
||||
}
|
||||
// get new len
|
||||
$('#character-counter').html($(this).val().length);
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
});
|
||||
|
@ -146,10 +118,38 @@ function initEditor(cb) {
|
|||
}
|
||||
}
|
||||
|
||||
function charCounter() {
|
||||
// character count part deux
|
||||
$('#profile-jot-text').keyup(function(event) {
|
||||
var textlen = $(this).val().length();
|
||||
var maxLen1 = 140;
|
||||
var maxLen2 = 420;
|
||||
|
||||
$('#character-counter').removeClass('jothidden');
|
||||
if(textlen <= maxLen1) {
|
||||
$('#character-counter').removeClass('red');
|
||||
$('#character-counter').removeClass('orange');
|
||||
$('#character-counter').addClass('grey');
|
||||
}
|
||||
if((textlen > maxLen1) && (textlen <= maxLen2)) {
|
||||
$('#character-counter').removeClass('grey');
|
||||
$('#character-counter').removeClass('red');
|
||||
$('#character-counter').addClass('orange');
|
||||
}
|
||||
if(textlen > maxLen2) {
|
||||
$('#character-counter').removeClass('grey');
|
||||
$('#character-counter').removeClass('orange');
|
||||
$('#character-counter').addClass('red');
|
||||
}
|
||||
$('#character-counter').html($(this).val().length);
|
||||
});
|
||||
}
|
||||
|
||||
function enableOnUser(){
|
||||
if (editor) return;
|
||||
$(this).val("");
|
||||
initEditor();
|
||||
charCounter();
|
||||
}
|
||||
|
||||
</script>
|
||||
|
|
|
@ -918,9 +918,12 @@ aside #viewcontacts {
|
|||
#acl-deny-text-end {
|
||||
clear: both;
|
||||
}
|
||||
#jot-title-desc, #profile-jot-desc {
|
||||
#jot-title-desc {
|
||||
color: #cccccc;
|
||||
}
|
||||
#profile-jot-desc {
|
||||
color: #a00;
|
||||
}
|
||||
#jot-title-wrapper {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue