From af6f5827e6d283a8306170e6ba567b089577198a Mon Sep 17 00:00:00 2001 From: rolux Date: Wed, 20 Feb 2013 16:35:49 +0530 Subject: [PATCH] reorder event handlers alphabetically --- static/js/pandora/embedPanel.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/static/js/pandora/embedPanel.js b/static/js/pandora/embedPanel.js index 359f0b70..ade9b946 100644 --- a/static/js/pandora/embedPanel.js +++ b/static/js/pandora/embedPanel.js @@ -109,6 +109,9 @@ pandora.ui.embedPanel = function() { out: options.out } : {})) .bindEvent({ + fullscreen: function(data) { + Ox.Fullscreen.toggle(); + }, playing: function(data) { setPosition(data.position, true); }, @@ -119,9 +122,6 @@ pandora.ui.embedPanel = function() { $timeline.options({ subtitles: data.subtitles ? video.subtitles : [] }); - }, - fullscreen: function(data) { - Ox.Fullscreen.toggle(); } });