Skip to content

Commit

Permalink
fix for space rendering bug introduced in #139 (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
proycon committed Dec 11, 2020
1 parent 325e46d commit cf03f7b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion flat/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.9.3"
VERSION = "0.9.4"
2 changes: 1 addition & 1 deletion flat/script/flat.js
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ function rendertextclass() {
} else {
$(lbl).html(annotation.text);
}
$('#' + valid(structureelement.id)).append(ab,lbl);
$('#' + valid(structureelement.id)).prepend(ab,lbl);
}
}
});
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def read(fname):

setup(
name = "FoLiA-Linguistic-Annotation-Tool",
version = "0.9.3", #Also change in flat/__init__.py !!
version = "0.9.4", #Also change in flat/__init__.py !!
author = "Maarten van Gompel",
author_email = "[email protected]",
description = ("FLAT is a web-based linguistic annotation environment based around the FoLiA format (https://proycon.github.io/folia), a rich XML-based format for linguistic annotation. Flat allows users to view annotated FoLiA documents and enrich these documents with new annotations, a wide variety of linguistic annotation types is supported through the FoLiA paradigm."),
Expand Down

0 comments on commit cf03f7b

Please sign in to comment.