summaryrefslogtreecommitdiff
path: root/public/common/client.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/common/client.js')
-rw-r--r--public/common/client.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/common/client.js b/public/common/client.js
index 79592c9..23e434d 100644
--- a/public/common/client.js
+++ b/public/common/client.js
@@ -651,7 +651,7 @@ function action_button_imp(action, label, callback) {
button.id = id
button.textContent = label
button.addEventListener("click", callback)
- document.getElementById("actions").appendChild(button)
+ document.getElementById("actions").prepend(button)
}
if (view.actions && action in view.actions) {
button.classList.remove("hide")