forked from 0x2620/oxjs
form elements rewrite, part 2
This commit is contained in:
parent
fe303bf2b0
commit
074902d079
33 changed files with 163 additions and 153 deletions
|
|
@ -261,9 +261,7 @@ Ox.VideoEditorPlayer = function(options, self) {
|
|||
self.options.position = data.position;
|
||||
setMarkers();
|
||||
setSubtitle();
|
||||
self.$positionInput.options({
|
||||
value: Ox.formatDuration(self.options.position, 3)
|
||||
});
|
||||
self.$positionInput.value(Ox.formatDuration(self.options.position, 3));
|
||||
that.triggerEvent('playing', {
|
||||
position: self.options.position
|
||||
});
|
||||
|
|
@ -322,9 +320,7 @@ Ox.VideoEditorPlayer = function(options, self) {
|
|||
}
|
||||
setMarkers();
|
||||
setSubtitle();
|
||||
self.$positionInput.options({
|
||||
value: Ox.formatDuration(self.options.position, 3)
|
||||
});
|
||||
self.$positionInput.value(Ox.formatDuration(self.options.position, 3));
|
||||
}
|
||||
|
||||
function setSubtitle() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue