forked from 0x2620/pandora
fix a bug where the calendar background in manage events would be 48px too short
This commit is contained in:
parent
de133158d6
commit
b22d593200
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ pandora.ui.eventsDialog = function() {
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
events: result.data.items,
|
events: result.data.items,
|
||||||
height: height - 48,
|
height: height,
|
||||||
removeEvent: function(event, callback) {
|
removeEvent: function(event, callback) {
|
||||||
pandora.api.removeEvent(event, function(result) {
|
pandora.api.removeEvent(event, function(result) {
|
||||||
Ox.Request.clearCache(); // fixme: remove
|
Ox.Request.clearCache(); // fixme: remove
|
||||||
|
|
Loading…
Reference in a new issue