summaryrefslogtreecommitdiffstats
path: root/core/src/init.js
Commit message (Collapse)AuthorAgeFilesLines
* Work around snap.js state messVincent Petry2020-11-021-8/+64
| | | | | | | | | | | | | | | | | | | Snap.js is not robust enough to prevent multiple calls to open() or close(), so we added more checks to prevent these happening even when an animation is in progress. Because if we let this through, snap.js will not notice that the animation is already done (or a duplicate animation was started), so the "transitionend" event will not fire a second time. During an animation, snap.js sets up a setInterval() that hogs the CPU during the animation. Since a transition doesn't always end due to the above conditions, that CPU hogging would stay forever. This is the best workaround so far, it seems it's not possible to cancel that interval from the outside nor to trigger events to make it do so. Signed-off-by: Vincent Petry <vincent@nextcloud.com>
* Up the limit for the header app menu, fix #21635Jan-Christoph Borchardt2020-07-101-2/+2
| | | | | Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
* Set the moment locale even earlierChristoph Wurst2020-07-091-5/+5
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Bump eslint-config-nextcloud from 0.0.6 to 0.1.0dependabot-preview[bot]2019-12-191-2/+2
| | | | | | | | | | Bumps [eslint-config-nextcloud](https://github.com/nextcloud/eslint-config-nextcloud) from 0.0.6 to 0.1.0. - [Release notes](https://github.com/nextcloud/eslint-config-nextcloud/releases) - [Commits](https://github.com/nextcloud/eslint-config-nextcloud/compare/v0.0.6...v0.1.0) Co-authored-by: Christoph Wurst <christoph@winzerhof-wurst.at> Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Comply to eslintJohn Molakvoæ (skjnldsv)2019-10-011-21/+23
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* CSS: adjust media query breakpoint to improve tablet readabilitynacho2019-05-301-2/+5
| | | | see https://github.com/nextcloud/news/pull/467
* Move initCore to the bundleChristoph Wurst2019-05-101-0/+307
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>