forked from 0x2620/oxjs
comment out some Ox.print calls
This commit is contained in:
parent
17d92a3ff7
commit
429d5c744b
4 changed files with 8 additions and 8 deletions
|
|
@ -1010,7 +1010,7 @@ Ox.VideoEditor = function(options, self) {
|
|||
}
|
||||
|
||||
function removeAnnotation(data) {
|
||||
Ox.print('REMOVE EVENT REACHED EDITOR', data)
|
||||
//Ox.print('REMOVE EVENT REACHED EDITOR', data)
|
||||
var layer = Ox.getObjectById(self.options.layers, data.layer),
|
||||
index = Ox.getIndexById(layer.items, data.id);
|
||||
// deselect event will have fired before
|
||||
|
|
@ -1038,7 +1038,7 @@ Ox.VideoEditor = function(options, self) {
|
|||
}
|
||||
|
||||
function selectAnnotation(data, stayAtPosition) {
|
||||
Ox.print('SELECT ANNOTATION', data);
|
||||
//Ox.print('SELECT ANNOTATION', data);
|
||||
if (Ox.isUndefined(data)) {
|
||||
// doubleclick on small timeline
|
||||
data = getAnnotation();
|
||||
|
|
@ -1312,7 +1312,7 @@ Ox.VideoEditor = function(options, self) {
|
|||
function updateWords(action) {
|
||||
// action can be 'add' or 'remove'
|
||||
var words = [];
|
||||
Ox.print('....', self.options.selected, getAnnotationValue(self.options.selected))
|
||||
//Ox.print('....', self.options.selected, getAnnotationValue(self.options.selected))
|
||||
Ox.forEach(Ox.count(Ox.words(
|
||||
getAnnotationValue(self.options.selected)
|
||||
)), function(count, value) {
|
||||
|
|
|
|||
|
|
@ -1175,7 +1175,7 @@ Ox.VideoPlayer = function(options, self) {
|
|||
} : null;
|
||||
});
|
||||
}
|
||||
Ox.print('FIND RESULTS:', results);
|
||||
//Ox.print('FIND RESULTS:', results);
|
||||
return results;
|
||||
}
|
||||
|
||||
|
|
@ -1440,7 +1440,7 @@ Ox.VideoPlayer = function(options, self) {
|
|||
}
|
||||
left += control == 'position' ? self.positionWidth : 16
|
||||
});
|
||||
Ox.print('TIMELINE_LEFT = ', left)
|
||||
//Ox.print('TIMELINE_LEFT = ', left)
|
||||
return left;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue