2017-01-20 08:18:52 +01:00
|
|
|
/*
|
|
|
|
* create.js
|
|
|
|
* Copyright (c) 2017 thegrumpydictator@gmail.com
|
|
|
|
* This software may be modified and distributed under the terms of the Creative Commons Attribution-ShareAlike 4.0 International License.
|
|
|
|
*
|
|
|
|
* See the LICENSE file for details.
|
|
|
|
*/
|
|
|
|
|
2017-09-25 09:28:16 +02:00
|
|
|
/** global: Modernizr, askReadWarning */
|
2017-01-20 08:18:52 +01:00
|
|
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
"use strict";
|
|
|
|
if (!Modernizr.inputtypes.date) {
|
|
|
|
$('input[type="date"]').datepicker(
|
|
|
|
{
|
|
|
|
dateFormat: 'yy-mm-dd'
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2017-09-25 09:28:16 +02:00
|
|
|
$('form.form-horizontal').on('submit', function () {
|
|
|
|
return confirm(askReadWarning);
|
|
|
|
});
|
2017-01-20 08:18:52 +01:00
|
|
|
});
|