fc77ee76d6
The primary license of the project is changing to: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later The Additional Permission is designed to permit publicly distributed Javascript code to be relicensed under LGPL-3.0-or-later, but not server-side Javascript code. As such, we've relicensed here static Javscript files under LGPL-3.0-or-later, and those that run as part of build and/or server side under AGPL-3.0-or-later. Note that in future, Javascript files may be updated to be stronger copyleft license with the Additional Permission, particularly if they adapted to run on server side and/or turned into templates. Of course, we'd seek public discussion with the contributor community about such changes. This commit is one of the many steps to relicense the entire codebase. Documentation granting permission for this relicensing (from all past contributors who hold copyrights) is on file with Software Freedom Conservancy, Inc.
30 lines
690 B
JavaScript
30 lines
690 B
JavaScript
// License: LGPL-3.0-or-later
|
|
var notification = require('./notification')
|
|
|
|
$('form.dynamic').submit(function(e) {
|
|
var self = this
|
|
e.preventDefault()
|
|
var path = this.getAttribute('action')
|
|
var meth = this.getAttribute('method')
|
|
var form_data = new FormData(this)
|
|
$(this).find('button[type="submit"]').loading()
|
|
|
|
$.ajax({
|
|
type: meth,
|
|
url: path,
|
|
data: form_data,
|
|
dataType: 'json',
|
|
processData: false,
|
|
contentType: false
|
|
})
|
|
.done(function(d) {
|
|
$('.modal').modal('hide')
|
|
notification(d.notification)
|
|
})
|
|
.fail(function(d) {
|
|
$(self).find('.error').text(utils.print_error(d))
|
|
})
|
|
.complete(function() {
|
|
$(self).find('button[type="submit"]').disableLoading()
|
|
})
|
|
})
|