From af504813abc672b6ff4d42669dbec18a5b012ceb Mon Sep 17 00:00:00 2001 From: Andrew Noblet Date: Sat, 28 Sep 2024 15:37:44 +0000 Subject: [PATCH] feat(cxl-ui): cxl-jw-player remove support for plugins --- packages/cxl-ui/src/components/cxl-jw-player/index.js | 3 --- .../cxl-jw-player/mixins/chapter-navigation/index.js | 3 --- 2 files changed, 6 deletions(-) diff --git a/packages/cxl-ui/src/components/cxl-jw-player/index.js b/packages/cxl-ui/src/components/cxl-jw-player/index.js index 8879d5429..dc9143c20 100644 --- a/packages/cxl-ui/src/components/cxl-jw-player/index.js +++ b/packages/cxl-ui/src/components/cxl-jw-player/index.js @@ -24,9 +24,6 @@ export class CXLJWPlayerElement extends mixin(LitElement, [ height: '100%', width: '100%', playbackRateControls: [0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2], - plugins: { - // 'http://192.168.0.101:8080/telemetry-8.20.0.js': {}, - }, skin: { name: 'cxl-institute', }, diff --git a/packages/cxl-ui/src/components/cxl-jw-player/mixins/chapter-navigation/index.js b/packages/cxl-ui/src/components/cxl-jw-player/mixins/chapter-navigation/index.js index 009a4c0aa..6bf4562a1 100644 --- a/packages/cxl-ui/src/components/cxl-jw-player/mixins/chapter-navigation/index.js +++ b/packages/cxl-ui/src/components/cxl-jw-player/mixins/chapter-navigation/index.js @@ -1,5 +1,4 @@ import { render } from 'lit'; -import { property } from 'lit/decorators.js'; import style from '../../../../styles/global/cxl-jw-player/cxl-jw-player-chapter-navigation-css'; import { chapterNavigationTemplate } from './index.html'; @@ -7,8 +6,6 @@ export function ChapterNavigationMixin(BaseClass) { class Mixin extends BaseClass { _chapterNavigation; - @property({ attribute: 'plugin-path', type: String }) pluginPath; - async _setupChapterNavigation() { const chapters = await this._getChapters();