diff --git a/static/js/pandora/utils.js b/static/js/pandora/utils.js index fe156fc0..8031c79a 100644 --- a/static/js/pandora/utils.js +++ b/static/js/pandora/utils.js @@ -960,7 +960,6 @@ pandora.getLargeEditTimelineURL = function(edit, type, i, callback) { var image = Ox.$('') .on({ load: function() { - Ox.print('DRAWING TIMELINE', i, 'AT', Math.floor((clip.position - timelineIn) * fps), 'OF', width) context.drawImage(image, Math.floor((clip.position - timelineIn) * fps), 0); callback(); } @@ -1603,6 +1602,17 @@ pandora.resizeWindow = function() { pandora.$ui.calendar.resizeCalendar(); } } + } else if (pandora.user.ui.section == 'edits') { + if (!pandora.user.ui.edit) { + // ... + } else { + pandora.$ui.editPanel && pandora.$ui.editPanel.options({ + height: pandora.$ui.appPanel.size(1), + width: pandora.$ui.document.width() - pandora.$ui.mainPanel.size(0) - 1 + }); + } + } else if (pandora.user.ui.section == 'texts') { + // ... } };