forked from mirrors/gecko-dev
* Sketch in a page layout and grid to house the tab-pickup region * Add a tabs-pickup module with custom elements for the deck of cards that is the setup flow * and a container with placeholder logic to manage the setup flow * Make myfirefox.js a module, hook up the tabs-pickup element with its controller/manager where we can implement the fxa flow & business logic stuff Differential Revision: https://phabricator.services.mozilla.com/D142661
11 lines
293 B
JavaScript
11 lines
293 B
JavaScript
/* 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/. */
|
|
|
|
"use strict";
|
|
|
|
module.exports = {
|
|
parserOptions: {
|
|
sourceType: "module",
|
|
},
|
|
};
|