UNPKG

nplayer

Version:

powerful danmaku video player

14 lines (12 loc) 336 B
import { I18n, LOOP } from '../features'; import { ContextMenuItem } from '../parts/contextmenu'; export const loopContextMenuItem = (): ContextMenuItem => ({ id: 'loop', html: I18n.t(LOOP), show(player, item) { item.checked = player.loop; }, click(player, item) { item.checked = player.loop = !player.loop; }, });