- Created a SidebarState API to manage reactive properties for the controller. - Replaced usages of sidebarMain.hidden with state.launcherVisible. - Replaced usages of sidebarMain.expanded with state.launcherExpanded. - Removed toggleExpanded() and toggleHide(), replaced with equivalent state toggles. Differential Revision: https://phabricator.services.mozilla.com/D229558
17 lines
520 B
Python
17 lines
520 B
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
MARIONETTE_MANIFESTS += ["tests/marionette/manifest.toml"]
|
|
|
|
JAR_MANIFESTS += ["jar.mn"]
|
|
|
|
BROWSER_CHROME_MANIFESTS += ["tests/browser/browser.toml"]
|
|
|
|
EXTRA_JS_MODULES += [
|
|
"SidebarManager.sys.mjs",
|
|
"SidebarState.sys.mjs",
|
|
]
|