Compare commits
2 commits
3a09834ee5
...
af09508a87
| Author | SHA1 | Date | |
|---|---|---|---|
| af09508a87 | |||
| 87c7797181 |
3 changed files with 6 additions and 7 deletions
|
|
@ -1197,7 +1197,7 @@ examples (config.SITENAME.jsonc) that are part of this pan.do/ra distribution.
|
|||
"preferences": "",
|
||||
"tv": ""
|
||||
},
|
||||
"previewView": "poster",
|
||||
"preview": "poster",
|
||||
"section": "items",
|
||||
"sequenceMode": "shape",
|
||||
"sequenceSort": [{"key": "director", "operator": "+"}],
|
||||
|
|
|
|||
|
|
@ -1,9 +1,9 @@
|
|||
'use strict';
|
||||
|
||||
pandora.ui.previewDialog = function() {
|
||||
if (pandora.user.ui.previewView == "poster") {
|
||||
if (pandora.user.ui.preview == "poster") {
|
||||
return pandora.ui.previewPoster()
|
||||
} else if (pandora.user.ui.previewView == "player") {
|
||||
} else if (pandora.user.ui.preview == "player") {
|
||||
return pandora.ui.previewPlayer()
|
||||
}
|
||||
};
|
||||
|
|
|
|||
|
|
@ -150,14 +150,13 @@ pandora.ui.previewPlayer = function() {
|
|||
+ Ox.formatDuration($player.options('position'));
|
||||
pandora.openURL(url);
|
||||
},
|
||||
playing: function(data) {
|
||||
/*
|
||||
position: function(data) {
|
||||
console.log('position', data)
|
||||
pandora.UI.set(
|
||||
'videoPoints.' + item.id + '.position',
|
||||
data.position
|
||||
);
|
||||
*/
|
||||
}
|
||||
},
|
||||
});
|
||||
that.options({content: $player});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue