forked from 0x2620/pandora
fix #2559 (extra history entry added when resolving annotation id breaks back button)
This commit is contained in:
parent
1b9df27136
commit
1e3fa3c98e
1 changed files with 9 additions and 6 deletions
|
@ -1686,12 +1686,15 @@ pandora.getSpan = function(state, val, callback) {
|
|||
if (result.data.items.length) {
|
||||
span = result.data.items[0];
|
||||
annotation = span.id.split('/')[1];
|
||||
type == 'annotation' && pandora.UI.set('videoPoints.' + state.item, {
|
||||
annotation: annotation,
|
||||
'in': span['in'],
|
||||
out: span.out,
|
||||
position: span['in']
|
||||
});
|
||||
// This is an optimization to make sure the video view
|
||||
// immediately loads at the correct position
|
||||
if (type == 'annotation') {
|
||||
pandora.user.ui.videoPoints[state.item] = {
|
||||
'in': span['in'],
|
||||
out: span.out,
|
||||
position: span['in']
|
||||
};
|
||||
}
|
||||
}
|
||||
callback(
|
||||
!span ? ''
|
||||
|
|
Loading…
Reference in a new issue