public_note.js 463 B

1234567891011121314
  1. /**
  2. * SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
  3. * SPDX-License-Identifier: AGPL-3.0-or-later
  4. */
  5. window.addEventListener('DOMContentLoaded', function() {
  6. var noteElmt = document.getElementById('notemenu')
  7. if (noteElmt) {
  8. var noteHtml = noteElmt.outerHTML
  9. $(noteHtml).insertBefore('#header-primary-action');
  10. $('#notemenu').removeClass('hidden');
  11. OC.registerMenu($('#notemenu .menutoggle'), $('#notemenu .menu'))
  12. }
  13. })