- if ($("#format_osm").prop("checked") && bounds.getWidth() * bounds.getHeight() > <%= MAX_REQUEST_AREA %>) {
- $("#export_commit").prop("disabled", true);
- } else if ($("#format_mapnik").prop("checked") && $("#mapnik_scale").val() < max_scale) {
- $("#export_commit").prop("disabled", true);
- } else {
- $("#export_commit").prop("disabled", false);
+ if ($("#format_osm").prop("checked")) {
+ disabled = bounds.getWidth() * bounds.getHeight() > <%= MAX_REQUEST_AREA %>;
+ } else if ($("#format_mapnik").prop("checked")) {
+ disabled = $("#mapnik_scale").val() < max_scale;