Display the blank for new bots below existing bots.

(imported from commit 813fbf969d0fef508db1dc4acd02c1fc98f427fb)
This commit is contained in:
Tim Abbott 2013-05-28 15:36:22 -04:00
parent e33812d1ff
commit 968ef85ff8
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ function add_bot_row(name, email, api_key) {
var row = $('<tr></tr>').append($('<td>').text(name),
$('<td>').text(email),
$('<td class="api_key">').text(api_key));
$('#create_bot_row').after(row);
$('#create_bot_row').before(row);
}
function is_local_part(value, element) {