forked from 0x2620/pandora
minor reformatting
This commit is contained in:
parent
19b2bb7f06
commit
2dc7727dab
1 changed files with 6 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue