sort text bins by create instead of value as 3rd sort value, fixes #995
This commit is contained in:
parent
7d4d543ee3
commit
2a7a6da95d
1 changed files with 2 additions and 2 deletions
|
@ -455,8 +455,8 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
|
|
||||||
function getSort() {
|
function getSort() {
|
||||||
return ({
|
return ({
|
||||||
duration: ['-duration', '+in', '+value'],
|
duration: ['-duration', '+in', self.options.type == 'text' ? '+created' : '+value'],
|
||||||
position: ['+in', '+duration', '+value'],
|
position: ['+in', '+duration', self.options.type == 'text' ? '+created' : '+value'],
|
||||||
text: ['+value', '+in', '+duration']
|
text: ['+value', '+in', '+duration']
|
||||||
})[self.options.sort];
|
})[self.options.sort];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue