1
0
mirror of https://github.com/psychopy/psychojs.git synced 2025-05-12 08:38:10 +00:00

sound: fix import paths

This commit is contained in:
Sotiri Bakagiannis 2021-07-09 13:47:36 +01:00
parent 24f43ccbbb
commit 7f6b37d720
7 changed files with 20 additions and 20 deletions

View File

@ -7,10 +7,10 @@
* @license Distributed under the terms of the MIT License * @license Distributed under the terms of the MIT License
*/ */
import {PsychObject} from '../util/PsychObject'; import {PsychObject} from '../util/PsychObject.js';
import {PsychoJS} from '../core/PsychoJS'; import {PsychoJS} from '../core/PsychoJS.js';
import {ExperimentHandler} from '../data/ExperimentHandler'; import {ExperimentHandler} from '../data/ExperimentHandler.js';
import * as util from '../util/Util'; import * as util from '../util/Util.js';
/** /**

View File

@ -7,8 +7,8 @@
* @license Distributed under the terms of the MIT License * @license Distributed under the terms of the MIT License
*/ */
import {SoundPlayer} from './SoundPlayer'; import {SoundPlayer} from './SoundPlayer.js';
import {AudioClip} from "./AudioClip"; import {AudioClip} from "./AudioClip.js";
/** /**

View File

@ -7,12 +7,12 @@
* @license Distributed under the terms of the MIT License * @license Distributed under the terms of the MIT License
*/ */
import {Clock} from "../util/Clock"; import {Clock} from "../util/Clock.js";
import {PsychObject} from "../util/PsychObject"; import {PsychObject} from "../util/PsychObject.js";
import {PsychoJS} from "../core/PsychoJS"; import {PsychoJS} from "../core/PsychoJS.js";
import * as util from '../util/Util'; import * as util from '../util/Util.js';
import {ExperimentHandler} from "../data/ExperimentHandler"; import {ExperimentHandler} from "../data/ExperimentHandler.js";
import {AudioClip} from "./AudioClip"; import {AudioClip} from "./AudioClip.js";
/** /**
* <p>This manager handles the recording of audio signal.</p> * <p>This manager handles the recording of audio signal.</p>

View File

@ -8,11 +8,11 @@
* @license Distributed under the terms of the MIT License * @license Distributed under the terms of the MIT License
*/ */
import {PsychoJS} from '../core/PsychoJS'; import {PsychoJS} from '../core/PsychoJS.js';
import {PsychObject} from '../util/PsychObject'; import {PsychObject} from '../util/PsychObject.js';
import {TonePlayer} from './TonePlayer'; import {TonePlayer} from './TonePlayer.js';
import {TrackPlayer} from './TrackPlayer'; import {TrackPlayer} from './TrackPlayer.js';
import {AudioClipPlayer} from './AudioClipPlayer'; import {AudioClipPlayer} from './AudioClipPlayer.js';
/** /**

View File

@ -7,7 +7,7 @@
* @license Distributed under the terms of the MIT License * @license Distributed under the terms of the MIT License
*/ */
import {PsychObject} from '../util/PsychObject'; import {PsychObject} from '../util/PsychObject.js';
/** /**

View File

@ -9,7 +9,7 @@
import * as Tone from 'tone'; import * as Tone from 'tone';
import { isNumeric } from "../util/Util.js"; import { isNumeric } from "../util/Util.js";
import {SoundPlayer} from './SoundPlayer'; import {SoundPlayer} from './SoundPlayer.js';
/** /**

View File

@ -7,7 +7,7 @@
* @license Distributed under the terms of the MIT License * @license Distributed under the terms of the MIT License
*/ */
import {SoundPlayer} from './SoundPlayer'; import {SoundPlayer} from './SoundPlayer.js';
/** /**