when player, editor, timeline or cliplist gains or loses focus, update item menu
This commit is contained in:
parent
8850153909
commit
6521488412
4 changed files with 25 additions and 0 deletions
|
|
@ -87,6 +87,9 @@ pandora.ui.player = function(data) {
|
|||
find: function(data) {
|
||||
pandora.UI.set({itemFind: data.find});
|
||||
},
|
||||
gainfocus: function() {
|
||||
pandora.$ui.mainMenu.replaceItemMenu();
|
||||
},
|
||||
info: function(data) {
|
||||
pandora.ui.annotationDialog(
|
||||
Ox.getObjectById(pandora.site.layers, data.layer).title
|
||||
|
|
@ -95,6 +98,9 @@ pandora.ui.player = function(data) {
|
|||
loop: function(data) {
|
||||
pandora.UI.set({videoLoop: data.loop});
|
||||
},
|
||||
losefocus: function() {
|
||||
pandora.$ui.mainMenu.replaceItemMenu();
|
||||
},
|
||||
muted: function(data) {
|
||||
pandora.UI.set({videoMuted: data.muted});
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue