18 lines
461 B
PHP
18 lines
461 B
PHP
@if(!defined('LOAD_SAVE'))
|
|
@push('scripts')
|
|
<script>
|
|
function initSaveForm(sel, form) {
|
|
var selector = (typeof(sel) == 'undefined') ? '.save' : sel;
|
|
var form = (typeof(form) == 'undefined') ? '#form' : form;
|
|
console.log(selector);
|
|
console.log(form);
|
|
$(selector).off().click(function(e) {
|
|
console.log("ici");
|
|
e.preventDefault();
|
|
$(form).submit();
|
|
});
|
|
}
|
|
</script>
|
|
@endpush
|
|
@php(define('LOAD_SAVE', true))
|
|
@endif |