Compare commits
No commits in common. "69fae04bb8537965b5f6d2196aa112a61c70cce4" and "068293050ed078c4b3587f94ff196d18665dc840" have entirely different histories.
69fae04bb8
...
068293050e
3 changed files with 3 additions and 6 deletions
|
|
@ -53,10 +53,7 @@ def embed(request, id):
|
|||
})
|
||||
|
||||
def redirect_url(request, url):
|
||||
try:
|
||||
url = base64.decodebytes(url.encode()).decode()
|
||||
except:
|
||||
pass
|
||||
url = base64.decodebytes(url.encode()).decode()
|
||||
if settings.CONFIG['site'].get('sendReferrer', False):
|
||||
return redirect(url)
|
||||
else:
|
||||
|
|
|
|||
|
|
@ -142,7 +142,7 @@ pandora.ui.info = function() {
|
|||
})
|
||||
.bindEvent({
|
||||
click: function(data) {
|
||||
if (ui.item && ['timeline', 'player', 'editor'].indexOf(ui.itemView) > -1 && pandora.$ui[ui.itemView]) {
|
||||
if (ui.item && ['timeline', 'player', 'editor'].indexOf(ui.itemView) > -1) {
|
||||
pandora.$ui[ui.itemView].options({
|
||||
position: data.position
|
||||
});
|
||||
|
|
|
|||
|
|
@ -2961,7 +2961,7 @@ pandora.resizeFolders = function(section) {
|
|||
: section == 'edits' ? width - 16
|
||||
: width - 48
|
||||
) - 8);
|
||||
pandora.$ui.folderList && Ox.forEach(pandora.$ui.folderList, function($list, id) {
|
||||
Ox.forEach(pandora.$ui.folderList, function($list, id) {
|
||||
var pos = Ox.getIndexById(pandora.site.sectionFolders[section], id);
|
||||
pandora.$ui.folder[pos] && pandora.$ui.folder[pos].css({
|
||||
width: width + 'px'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue