From 2375ea4f912c478cf55e7a86b92febc6c3986bd8 Mon Sep 17 00:00:00 2001 From: rolux Date: Wed, 18 Apr 2012 08:41:32 +0000 Subject: [PATCH] change order of video views in view menu --- static/js/pandora/menu.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/pandora/menu.js b/static/js/pandora/menu.js index 459b9079..e73fd8d7 100644 --- a/static/js/pandora/menu.js +++ b/static/js/pandora/menu.js @@ -87,7 +87,7 @@ pandora.ui.mainMenu = function() { }) }, ] }, { id: 'clips', title: 'Open Clips', items: [ - { group: 'videoview', min: 1, max: 1, items: ['timeline', 'player', 'editor'].map(function(view) { + { group: 'videoview', min: 1, max: 1, items: ['player', 'editor', 'timeline'].map(function(view) { return {id: view, title: Ox.toTitleCase(view), checked: ui.videoView == view}; }) } ] },