Skip to content

Commit

Permalink
feat: 删除调试输出
Browse files Browse the repository at this point in the history
  • Loading branch information
enncy committed Apr 13, 2022
1 parent 6fd7794 commit a096447
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions packages/core/src/components/cx/StudySettingPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ export const StudySettingPanel = defineComponent({
step="1"
onChange={(e: any) => {
settings.playbackRate = e.target.valueAsNumber;
console.log("store.currentMedia", store.currentMedia);

if (store.currentMedia) {
store.currentMedia.playbackRate = e.target.valueAsNumber;
}
Expand Down Expand Up @@ -71,8 +69,6 @@ export const StudySettingPanel = defineComponent({
value={settings.volume}
onInput={(e: any) => {
settings.volume = e.target.valueAsNumber;
console.log("store.currentMedia", store.currentMedia);

if (store.currentMedia) store.currentMedia.volume = e.target.valueAsNumber;
}}
/>
Expand Down

0 comments on commit a096447

Please sign in to comment.