nextcloud/core/src/components/MainMenu.js
Mostafa Ahangarha c5baf3d7ef Fix: float and clear
Fix other background-positions
Minor fix in link button icon position
Update header left and right to start and end

Signed-off-by: Mostafa Ahangarha <ahangarha@riseup.net>
2024-08-29 08:32:47 +00:00

34 lines
699 B
JavaScript

/**
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { translate as t, translatePlural as n } from '@nextcloud/l10n'
import Vue from 'vue'
import AppMenu from './AppMenu.vue'
export const setUp = () => {
Vue.mixin({
methods: {
t,
n,
},
})
const container = document.getElementById('header-start__appmenu')
if (!container) {
// no container, possibly we're on a public page
return
}
const AppMenuApp = Vue.extend(AppMenu)
const appMenu = new AppMenuApp({}).$mount(container)
Object.assign(OC, {
setNavigationCounter(id, counter) {
appMenu.setNavigationCounter(id, counter)
},
})
}