auto-focus on first field in visible content

This commit is contained in:
Dave Cranwell 2015-01-08 17:12:07 +00:00
parent 6ed3303ad0
commit 101fd1c044

View file

@ -66,4 +66,10 @@
{% endblock %}
{% block extra_js %}
{% include "wagtailadmin/pages/_editor_js.html" %}
<script>
$(function(){
$('#page-edit-form .tab-content section.active input').first().focus();
});
</script>
{% endblock %}