mirror of
https://github.com/shaka-project/shaka-player.git
synced 2026-06-14 15:56:38 +03:00
e7173960a7
The menu icon does not give any clue what is in the menu. A settings icon is much clearer, and hopefully will make the demo settings easier to discover. Change-Id: I198a1f628d11533c8f97dc861c1e8ecb55fa46e1
33 lines
525 B
JavaScript
33 lines
525 B
JavaScript
/*! @license
|
|
* Shaka Player
|
|
* Copyright 2016 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Externs for MDL methods.
|
|
* @externs
|
|
*/
|
|
|
|
|
|
/** @const */
|
|
const componentHandler = class {
|
|
/** @const */
|
|
static upgradeDom() {}
|
|
};
|
|
|
|
|
|
/** @constructor */
|
|
const MaterialLayout = class {
|
|
toggleDrawer() {}
|
|
};
|
|
|
|
/** @const */
|
|
MaterialLayout.prototype.Constant_ = {};
|
|
|
|
/** @type {string} */
|
|
MaterialLayout.prototype.Constant_.MENU_ICON;
|
|
|
|
/** @const {?MaterialLayout} */
|
|
Element.prototype.MaterialLayout;
|