in annotations panel edit menu, strip tags from annotation value
This commit is contained in:
parent
e762ec9137
commit
e557af2355
1 changed files with 1 additions and 1 deletions
|
@ -232,7 +232,7 @@ Ox.AnnotationPanel = function(options, self) {
|
||||||
isString = type != 'text';
|
isString = type != 'text';
|
||||||
// fixme: absence of annotation[type] may be an error
|
// fixme: absence of annotation[type] may be an error
|
||||||
isDefined = isEventOrPlace && !!annotation[type] && !!annotation[type].type;
|
isDefined = isEventOrPlace && !!annotation[type] && !!annotation[type].type;
|
||||||
annotationTitle = folder.options('item') + ': "' + value + '"';
|
annotationTitle = folder.options('item') + ': "' + Ox.stripTags(value) + '"';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
hasManualCalendarOrMap = self.options.layers.some(function(layer) {
|
hasManualCalendarOrMap = self.options.layers.some(function(layer) {
|
||||||
|
|
Loading…
Reference in a new issue