From 968ef85ff8d19d8033ab897dca8cc1a2e91ce63c Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Tue, 28 May 2013 15:36:22 -0400 Subject: [PATCH] Display the blank for new bots below existing bots. (imported from commit 813fbf969d0fef508db1dc4acd02c1fc98f427fb) --- zephyr/static/js/settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/static/js/settings.js b/zephyr/static/js/settings.js index 2a620a54a1..296ffefdad 100644 --- a/zephyr/static/js/settings.js +++ b/zephyr/static/js/settings.js @@ -6,7 +6,7 @@ function add_bot_row(name, email, api_key) { var row = $('').append($('').text(name), $('').text(email), $('').text(api_key)); - $('#create_bot_row').after(row); + $('#create_bot_row').before(row); } function is_local_part(value, element) {