Fix #1366 Can not edit fields in IE7

This commit is contained in:
Nicolas Le Goff
2013-07-30 19:38:39 +02:00
committed by Romain Neutron
parent 9d8415474b
commit eb8eb4f06a

View File

@@ -213,7 +213,9 @@ define([
$('.lng-label', this.$el).removeClass("select"); $('.lng-label', this.$el).removeClass("select");
curLabel.closest(".lng-label").addClass("select"); curLabel.closest(".lng-label").addClass("select");
$('.input-label', this.$el).hide(); $('.input-label', this.$el).hide();
$(curLabel.attr('href'), this.$el).show(); var href = curLabel.attr('href');
$("#" + href.split("#").pop(), this.$el).show();
} }
})); }));