forked from 0x2620/pandora
minor fixes
This commit is contained in:
parent
7a2fa69b28
commit
cf84467d23
2 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,6 @@ pandora.ui.browser = function() {
|
||||||
? pandora.site.user.ui.listSort: pandora.user.ui.listSort,
|
? pandora.site.user.ui.listSort: pandora.user.ui.listSort,
|
||||||
unique: 'id'
|
unique: 'id'
|
||||||
})
|
})
|
||||||
.css({overflowY: 'hidden'}) // this fixes a bug in firefox
|
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
open: function() {
|
open: function() {
|
||||||
that.scrollToSelection();
|
that.scrollToSelection();
|
||||||
|
@ -146,6 +145,7 @@ pandora.ui.browser = function() {
|
||||||
pandora.user.ui.icons == 'posters' && that.reloadList(true);
|
pandora.user.ui.icons == 'posters' && that.reloadList(true);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
that.css({overflowY: 'hidden'}); // this fixes a bug in firefox
|
||||||
pandora.enableDragAndDrop(that, false);
|
pandora.enableDragAndDrop(that, false);
|
||||||
}
|
}
|
||||||
return that;
|
return that;
|
||||||
|
|
|
@ -652,7 +652,7 @@ pandora.ui.infoView = function(data) {
|
||||||
.css({marginLeft: '52px'})
|
.css({marginLeft: '52px'})
|
||||||
.bindEvent({
|
.bindEvent({
|
||||||
click: function() {
|
click: function() {
|
||||||
pandora.URL.push('/rights');
|
pandora.UI.set({page: 'rights'});
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.appendTo($line);
|
.appendTo($line);
|
||||||
|
|
Loading…
Reference in a new issue