show overlay on small timeline on in / out options change

This commit is contained in:
Sanj 2011-12-30 21:43:56 +05:30
parent 7831dcd77d
commit 962362adb2
2 changed files with 3 additions and 2 deletions

View file

@ -213,12 +213,12 @@ Ox.SmallVideoTimeline = function(options, self) {
self.$image.options({
'in': value
});
setPointMarker('in');
self.options.type == 'editor' && setPointMarker('in');
} else if (key == 'out') {
self.$image.options({
out: value
});
setPointMarker('out');
self.options.type == 'editor' && setPointMarker('out');
} else if (key == 'paused') {
self.$positionMarker[
self.options.paused ? 'addClass' : 'removeClass'

View file

@ -2337,6 +2337,7 @@ Ox.VideoPlayer = function(options, self) {
setSizes();
} else if (key == 'in' || key == 'out') {
self.options.paused && setMarkers();
self.$timeline.options(key, value);
} else if (key == 'muted') {
toggleMuted();
} else if (key == 'paused') {