mirror of
https://github.com/nextcloud/server.git
synced 2025-05-05 14:30:48 +00:00
14 lines
No EOL
463 B
JavaScript
14 lines
No EOL
463 B
JavaScript
/**
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
window.addEventListener('DOMContentLoaded', function() {
|
|
var noteElmt = document.getElementById('notemenu')
|
|
if (noteElmt) {
|
|
var noteHtml = noteElmt.outerHTML
|
|
$(noteHtml).insertBefore('#header-primary-action');
|
|
$('#notemenu').removeClass('hidden');
|
|
OC.registerMenu($('#notemenu .menutoggle'), $('#notemenu .menu'))
|
|
}
|
|
}) |