Merge "Visual improvement on Launch Instance workflow."

This commit is contained in:
Jenkins 2014-01-02 04:25:38 +00:00 committed by Gerrit Code Review
commit 8db6727af5
2 changed files with 3 additions and 3 deletions

View File

@ -127,7 +127,7 @@ horizon.instances = {
});
if ($("#networkListId > div.control-group.error").length > 0) {
var errortext = $("#networkListId > div.control-group.error").find("span.help-inline").text();
$("#selected_network_h4").before($('<div class="dynamic-error">').html(errortext));
$("#selected_network_label").before($('<div class="dynamic-error">').html(errortext));
}
$(".networklist").sortable({
connectWith: "ul.networklist",

View File

@ -5,10 +5,10 @@
<tbody>
<tr>
<td class="actions">
<h4 id="selected_network_h4">{% trans "Selected Networks" %}</h4>
<label id="selected_network_label">{% trans "Selected Networks" %}</label>
<ul id="selected_network" class="networklist">
</ul>
<h4>{% trans "Available networks" %}</h4>
<label>{% trans "Available networks" %}</label>
<ul id="available_network" class="networklist">
</ul>
</td>