minor fixes

This commit is contained in:
rolux 2011-11-11 16:53:05 +00:00
parent 7a2fa69b28
commit cf84467d23
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,6 @@ pandora.ui.browser = function() {
? pandora.site.user.ui.listSort: pandora.user.ui.listSort,
unique: 'id'
})
.css({overflowY: 'hidden'}) // this fixes a bug in firefox
.bindEvent({
open: function() {
that.scrollToSelection();
@ -146,6 +145,7 @@ pandora.ui.browser = function() {
pandora.user.ui.icons == 'posters' && that.reloadList(true);
}
});
that.css({overflowY: 'hidden'}); // this fixes a bug in firefox
pandora.enableDragAndDrop(that, false);
}
return that;

View file

@ -652,7 +652,7 @@ pandora.ui.infoView = function(data) {
.css({marginLeft: '52px'})
.bindEvent({
click: function() {
pandora.URL.push('/rights');
pandora.UI.set({page: 'rights'});
}
})
.appendTo($line);