reorder event handlers alphabetically

This commit is contained in:
rolux 2013-02-20 16:35:49 +05:30
parent 110078ec9a
commit af6f5827e6

View file

@ -109,6 +109,9 @@ pandora.ui.embedPanel = function() {
out: options.out out: options.out
} : {})) } : {}))
.bindEvent({ .bindEvent({
fullscreen: function(data) {
Ox.Fullscreen.toggle();
},
playing: function(data) { playing: function(data) {
setPosition(data.position, true); setPosition(data.position, true);
}, },
@ -119,9 +122,6 @@ pandora.ui.embedPanel = function() {
$timeline.options({ $timeline.options({
subtitles: data.subtitles ? video.subtitles : [] subtitles: data.subtitles ? video.subtitles : []
}); });
},
fullscreen: function(data) {
Ox.Fullscreen.toggle();
} }
}); });