scroll to selected annotation on load
This commit is contained in:
parent
6d63c07ec5
commit
41e191f217
2 changed files with 4 additions and 1 deletions
|
@ -368,7 +368,6 @@ Ox.AnnotationFolder = function(options, self) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function selectAnnotation(data) {
|
function selectAnnotation(data) {
|
||||||
Ox.print('SELECT annotation', data)
|
|
||||||
var item = Ox.getObjectById(self.options.items, data.id);
|
var item = Ox.getObjectById(self.options.items, data.id);
|
||||||
self.options.selected = item ? data.id : '';
|
self.options.selected = item ? data.id : '';
|
||||||
if (self.widget) {
|
if (self.widget) {
|
||||||
|
|
|
@ -227,6 +227,10 @@ Ox.AnnotationPanel = function(options, self) {
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
|
self.options.selected && scrollToSelected(
|
||||||
|
getFolder(self.options.selected).options('type')
|
||||||
|
);
|
||||||
|
|
||||||
function getFolder(annotationId) {
|
function getFolder(annotationId) {
|
||||||
var found = false, folder;
|
var found = false, folder;
|
||||||
Ox.forEach(self.options.layers, function(layer, i) {
|
Ox.forEach(self.options.layers, function(layer, i) {
|
||||||
|
|
Loading…
Reference in a new issue