fix #1909 (that.resize -> that.resizeElement)

This commit is contained in:
rolux 2013-10-22 15:57:35 +02:00
commit 55bc138775
12 changed files with 15 additions and 21 deletions

View file

@ -157,7 +157,7 @@ pandora.ui.contactForm = function() {
) - 304 - Ox.UI.SCROLLBAR_SIZE, 512);
}
that.resize = function() {
that.resizeElement = function() {
var width = getWidth();
$form.css({width: width + 'px'});
$form.options('items').forEach(function($input, i) {
@ -169,7 +169,7 @@ pandora.ui.contactForm = function() {
$receiptCheckbox.options({width: width - 136});
}
$text.css({width: width + 'px'});
}
};
return that;