minor reformatting

This commit is contained in:
rolux 2012-04-19 06:51:29 +00:00
parent 19b2bb7f06
commit 2dc7727dab
1 changed files with 6 additions and 2 deletions

View File

@ -56,10 +56,14 @@ pandora.ui.eventsDialog = function(options) {
.bindEvent({
resize: function(data) {
// setting width would cause an expensive calendar redraw
$content && $content.options({height: data.height});
$content && $content.options({
height: data.height
});
},
resizeend: function(data) {
$content && $content.options({height: data.height, width: data.width});
$content && $content.options({
height: data.height, width: data.width
});
}
}),
$content;