mirror of
https://github.com/fergalmoran/robotopro.git
synced 2025-12-22 09:18:53 +00:00
12 lines
461 B
HTML
Executable File
12 lines
461 B
HTML
Executable File
{% load static %}
|
|
<script src="{% static "js/uncompressed/jquery.form.js" %}"></script>
|
|
<script src="{% static "js/uncompressed/date-time/bootstrap-datepicker.js" %}"></script>
|
|
<script src="{% static "js/uncompressed/date-time/moment.js" %}"></script>
|
|
|
|
<script type="text/javascript">
|
|
$(function () {
|
|
$('.date-picker').datepicker().next().on(ace.click_event, function () {
|
|
$(this).prev().focus();
|
|
});
|
|
});
|
|
</script> |