chg: [decaying:basescore_config] Tooltip does not modify talbe layout

anymore
pull/5032/head
mokaddem 2019-08-21 11:12:09 +02:00
parent 6be63d45a6
commit 0393c7ee9a
No known key found for this signature in database
GPG Key ID: 164C473F627A06FA
1 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ function addPickedTags(clicked) {
.text(base_score)
.append('<i class="fas fa-question-circle helptext-in-cell useCursorPointer" onclick="genHelpBaseScoreComputation(event, 0)"></i>');
$('#basescore-example-score-addTagButton').popover('destroy');
$('#basescore-example-customtag-container').find('span.tagFirstHalf').parent().tooltip({placement: 'right'});
$('#basescore-example-customtag-container').find('span.tagFirstHalf').parent().tooltip({placement: 'right', container: 'body'});
}
function removeCustomTag(clicked) {
@ -227,7 +227,7 @@ function refreshExamples() {
$('#basescore-example-score-'+i).empty()
.text(base_score)
.append('<i class="fas fa-question-circle helptext-in-cell useCursorPointer" onclick="genHelpBaseScoreComputation(event, ' + i + ')"></i>');
$('span.decayingExampleTags').tooltip();
$('span.decayingExampleTags').tooltip({ container: 'body' });
}
}