1
0
Fork 0
forked from 0x2620/oxjs

update item by id not position

This commit is contained in:
j 2020-09-22 12:48:08 +02:00
commit 009cdd68c3
3 changed files with 23 additions and 12 deletions

View file

@ -737,7 +737,10 @@ Ox.AnnotationPanel = function(options, self) {
@*/
that.blurItem = function() {
self.editing = false;
getFolder(self.options.selected).blurItem();
var $folder = getFolder(self.options.selected)
if ($folder) {
$folder.blurItem();
}
renderEditMenu();
return that;
};