shaka-player
Version:
DASH/EME video player library
30 lines (25 loc) • 662 B
JavaScript
/** @license
* Copyright 2016 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
goog.provide('shakaDemo.Tooltips');
/**
* Creates and contains a tooltip.
*/
shakaDemo.Tooltips = class {
/**
* @param {!Element} labeledElement
* @param {shakaDemo.MessageIds} message
*/
static make(labeledElement, message) {
tippy(labeledElement, {
content: shakaDemoMain.getLocalizedString(message),
placement: 'bottom',
arrow: true,
animation: 'scale',
size: 'large',
});
// TODO: The tooltip should be unreadable by screen readers, and this
// tooltip info should instead be encoded into the object.
}
};