forked from 0x2620/pandora
upon add/edit/remove annotation, clear complete cache
This commit is contained in:
parent
f47e67559f
commit
71424746da
1 changed files with 3 additions and 3 deletions
|
@ -89,7 +89,7 @@ pandora.ui.editor = function(data) {
|
||||||
event: {start: '', end: ''}
|
event: {start: '', end: ''}
|
||||||
} : {}
|
} : {}
|
||||||
));
|
));
|
||||||
Ox.Request.clearCache('findAnnotations');
|
Ox.Request.clearCache();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
annotationsfont: function(data) {
|
annotationsfont: function(data) {
|
||||||
|
@ -128,7 +128,7 @@ pandora.ui.editor = function(data) {
|
||||||
result.data.modified.slice(0, 10), '%B %e, %Y'
|
result.data.modified.slice(0, 10), '%B %e, %Y'
|
||||||
);
|
);
|
||||||
that.updateAnnotation(data.id, result.data);
|
that.updateAnnotation(data.id, result.data);
|
||||||
Ox.Request.clearCache('findAnnotations');
|
Ox.Request.clearCache();
|
||||||
};
|
};
|
||||||
if (data.id[0] == '_') {
|
if (data.id[0] == '_') {
|
||||||
pandora.api.addAnnotation({
|
pandora.api.addAnnotation({
|
||||||
|
@ -220,7 +220,7 @@ pandora.ui.editor = function(data) {
|
||||||
}, function(result) {
|
}, function(result) {
|
||||||
//fixme: check for errors
|
//fixme: check for errors
|
||||||
//that.removeAnnotation(data.layer, data.id);
|
//that.removeAnnotation(data.layer, data.id);
|
||||||
Ox.Request.clearCache('findAnnotations');
|
Ox.Request.clearCache();
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
resize: function(data) {
|
resize: function(data) {
|
||||||
|
|
Loading…
Reference in a new issue