UNPKG

shaka-player

Version:
32 lines (27 loc) 720 B
/*! @license * Shaka Player * Copyright 2016 Google LLC * SPDX-License-Identifier: Apache-2.0 */ goog.provide('shakaDemo.Tooltips'); goog.requireType('shakaDemo.MessageIds'); /** * 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. } };