forked from 0x2620/pandora
remove two print statements
This commit is contained in:
parent
2375ea4f91
commit
98ecd817ba
1 changed files with 3 additions and 1 deletions
|
@ -729,17 +729,19 @@ pandora.getMetadataByIdOrName = function(item, view, str, callback) {
|
||||||
operator: '&'
|
operator: '&'
|
||||||
}
|
}
|
||||||
} : {}), function(result) {
|
} : {}), function(result) {
|
||||||
Ox.print('RESULT::::::', result)
|
//Ox.print('RESULT::::::', result)
|
||||||
var annotation, span;
|
var annotation, span;
|
||||||
if (result.data.items.length) {
|
if (result.data.items.length) {
|
||||||
span = result.data.items[0];
|
span = result.data.items[0];
|
||||||
annotation = span.id.split('/')[1];
|
annotation = span.id.split('/')[1];
|
||||||
|
/*
|
||||||
Ox.print("SETTING::::", {
|
Ox.print("SETTING::::", {
|
||||||
annotation: annotation,
|
annotation: annotation,
|
||||||
'in': span['in'],
|
'in': span['in'],
|
||||||
out: span.out,
|
out: span.out,
|
||||||
position: span['in']
|
position: span['in']
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
type == 'annotation' && pandora.UI.set('videoPoints.' + item, {
|
type == 'annotation' && pandora.UI.set('videoPoints.' + item, {
|
||||||
annotation: annotation,
|
annotation: annotation,
|
||||||
'in': span['in'],
|
'in': span['in'],
|
||||||
|
|
Loading…
Reference in a new issue