Fixed overlapping lines + Typo
This commit is contained in:
parent
ac733092cc
commit
61a7893990
|
@ -39,7 +39,6 @@ function readValuesFromLocalstorage() {
|
|||
inputElement.val(text_val);
|
||||
|
||||
} else if (inputType === 'checkbox') {
|
||||
console.log('aaa')
|
||||
var check_value = localStorage.getItem(inputName);
|
||||
if (check_value !== null) {
|
||||
inputElement.prop('checked', check_value === 'true');
|
||||
|
@ -135,7 +134,9 @@ function adjustLabelPosition() {
|
|||
$('#advanced-tree-expand').bind('click', function(e) {
|
||||
if (!advancedTreeExpanded){
|
||||
advancedTreeExpanded = true;
|
||||
$('#advanced-tree').show('fast');
|
||||
$('#advanced-tree').show('fast', function() {
|
||||
adjustLabelPosition();
|
||||
});
|
||||
$('#advanced-tree-expand i').text('remove');
|
||||
} else {
|
||||
advancedTreeExpanded = false;
|
||||
|
@ -149,7 +150,9 @@ function adjustLabelPosition() {
|
|||
$('#compare-expand').bind('click', function(e) {
|
||||
if (!compareExpanded){
|
||||
compareExpanded = true;
|
||||
$('#compare-settings').show('fast');
|
||||
$('#compare-settings').show('fast', function() {
|
||||
adjustLabelPosition();
|
||||
});
|
||||
$('#compare-expand i').text('remove');
|
||||
} else {
|
||||
compareExpanded = false;
|
||||
|
|
Binary file not shown.
|
@ -376,7 +376,7 @@ msgid ""
|
|||
"BIC and OR keyness scores)."
|
||||
msgstr ""
|
||||
"Select a reference treebank to identify key phenomena (prints the frequency "
|
||||
"ration and the %DIFF, BIC and OR keyness scores)."
|
||||
"ratio and the %DIFF, BIC and OR keyness scores)."
|
||||
|
||||
#: templates/index.html:173 templates/index.html:180
|
||||
msgid "Upload a compare corpus"
|
||||
|
|
Loading…
Reference in New Issue
Block a user