when handling (in/out) point events from the video editor, don't overwrite position with its old value (fixes #768)

This commit is contained in:
rolux 2012-04-22 08:56:02 +00:00
parent 26afe7c8f5
commit 4ef5595f6f

View file

@ -176,7 +176,7 @@ pandora.ui.editor = function(data) {
annotation: pandora.user.ui.videoPoints[pandora.user.ui.item].annotation,
'in': data['in'],
out: data.out,
position: pandora.user.ui.videoPoints[pandora.user.ui.item].position
position: data.position
});
},
position: function(data) {