aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/js/public_note.js
blob: 33cadae115d820060fdde809605a012f97c6c919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/**
 * 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'))
	 }
 })