mirror of
https://github.com/nextcloud/server.git
synced 2026-02-18 18:28:50 -05:00
15 lines
564 B
JavaScript
15 lines
564 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
document.querySelector('form').addEventListener('submit', function(e) {
|
|
const wrapper = document.getElementById('submit-wrapper')
|
|
if (wrapper === null) {
|
|
return
|
|
}
|
|
Array.from(wrapper.getElementsByClassName('icon-confirm-white')).forEach(function(el) {
|
|
el.classList.remove('icon-confirm-white')
|
|
el.classList.add(OCA.Theming && OCA.Theming.inverted ? 'icon-loading-small' : 'icon-loading-small-dark')
|
|
el.disabled = true
|
|
})
|
|
})
|