Bug 597183, less squishy popups

This commit is contained in:
Matt Claypotch 2010-11-02 20:20:20 -07:00
Родитель e0d0cc8860
Коммит 92b144a6ed
2 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -2605,7 +2605,7 @@ label > .optional {
#add-to-collection form {
margin-bottom: 0;
}
#add-to-collection.new-collection #id_description {
#add-to-collection #id_description {
height: 6em;
}

Просмотреть файл

@ -604,12 +604,12 @@ $(document).ready(function () {
}
function renderList(data) {
$widget.removeClass("new-collection");
$widget.html(data);
$widget.show();
ct.removeClass("ajax-loading");
$("a.outlink", $widget).click(stopPropagation);
$widget.setWidth(200);
if (!$(".errorlist li", $widget).length)
$widget.setWidth(200);
$widget.setPos(ct);
$widget.render();
}
@ -626,7 +626,6 @@ $(document).ready(function () {
if (tgt.hasClass('ajax-loading')) return;
tgt.addClass('ajax-loading');
$.post(url, data, function(data) {
$widget.removeClass('new-collection');
$widget.html(data);
$("a.outlink", $widget).click(stopPropagation);
}, 'html');
@ -645,7 +644,6 @@ $(document).ready(function () {
e.preventDefault();
var tgt = $(this);
$.get(form_url, {'addon_id': addon_id}, function(d) {
$widget.addClass('new-collection');
$widget.html(d);
$widget.setWidth(410);
$widget.setPos(ct);