From: Christian Weiske Date: Mon, 6 Jul 2015 20:34:16 +0000 (+0200) Subject: move "additional options" button in the middle, and make it not so visible X-Git-Tag: v0.6.0~11 X-Git-Url: https://git.cweiske.de/phorkie.git/commitdiff_plain/c87f5bbf4f85b875c96d0953c25c2ca824b534d5?ds=sidebyside move "additional options" button in the middle, and make it not so visible --- diff --git a/data/templates/edit-file.htm b/data/templates/edit-file.htm index f9ed68f..58ba742 100644 --- a/data/templates/edit-file.htm +++ b/data/templates/edit-file.htm @@ -6,9 +6,9 @@ Binary files cannot be edited.

{% endif %} -
-
-
diff --git a/www/js/phorkie.js b/www/js/phorkie.js index 4817794..92616fd 100644 --- a/www/js/phorkie.js +++ b/www/js/phorkie.js @@ -49,6 +49,6 @@ function toggleAdditional(elem, time) var jt = jQuery(elem); jt.children('i').toggleClass('icon-chevron-down') .toggleClass('icon-chevron-up'); - jt.parents('.row-fluid').children('.additional').toggle(time); + jt.parents('.row-fluid').children('.additional').slideToggle(time); //jt.parents('.row-fluid').children('.additional').animate(time); }