0
0
Fork 0
mirror of https://github.com/healthchecks/healthchecks.git synced 2025-04-03 04:15:29 +00:00

Focus the "name" input in the "Add Project" modal.

This commit is contained in:
Pēteris Caune 2020-03-05 16:05:06 +02:00
parent 00810ff123
commit eb7f51f6f5
No known key found for this signature in database
GPG key ID: E28D7679E9A9EDE2
4 changed files with 9 additions and 2 deletions

View file

@ -0,0 +1,5 @@
$(function () {
$("#add-project-modal").on('shown.bs.modal', function () {
$("#add-project-name").focus();
})
});

View file

@ -12,10 +12,11 @@
<p>Name your project</p>
<input
id="add-project-name"
type="text"
name="name"
class="form-control input-lg"
autocomplete="off">
autocomplete="off" />
<p>&nbsp;</p>

View file

@ -205,6 +205,7 @@
{% compress js %}
<script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
<script src="{% static 'js/add_project_modal.js' %}"></script>
<script src="{% static 'js/profile.js' %}"></script>
{% endcompress %}
{% endblock %}

View file

@ -58,6 +58,6 @@
{% compress js %}
<script src="{% static 'js/jquery-2.1.4.min.js' %}"></script>
<script src="{% static 'js/bootstrap.min.js' %}"></script>
<script src="{% static 'js/project.js' %}"></script>
<script src="{% static 'js/add_project_modal.js' %}"></script>
{% endcompress %}
{% endblock %}