1
0
mirror of https://github.com/psychopy/psychojs.git synced 2025-05-11 16:18: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
*/
import {PsychObject} from '../util/PsychObject';
import {PsychoJS} from '../core/PsychoJS';
import {ExperimentHandler} from '../data/ExperimentHandler';
import * as util from '../util/Util';
import {PsychObject} from '../util/PsychObject.js';
import {PsychoJS} from '../core/PsychoJS.js';
import {ExperimentHandler} from '../data/ExperimentHandler.js';
import * as util from '../util/Util.js';
/**

View File

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

View File

@ -7,12 +7,12 @@
* @license Distributed under the terms of the MIT License
*/
import {Clock} from "../util/Clock";
import {PsychObject} from "../util/PsychObject";
import {PsychoJS} from "../core/PsychoJS";
import * as util from '../util/Util';
import {ExperimentHandler} from "../data/ExperimentHandler";
import {AudioClip} from "./AudioClip";
import {Clock} from "../util/Clock.js";
import {PsychObject} from "../util/PsychObject.js";
import {PsychoJS} from "../core/PsychoJS.js";
import * as util from '../util/Util.js';
import {ExperimentHandler} from "../data/ExperimentHandler.js";
import {AudioClip} from "./AudioClip.js";
/**
* <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
*/
import {PsychoJS} from '../core/PsychoJS';
import {PsychObject} from '../util/PsychObject';
import {TonePlayer} from './TonePlayer';
import {TrackPlayer} from './TrackPlayer';
import {AudioClipPlayer} from './AudioClipPlayer';
import {PsychoJS} from '../core/PsychoJS.js';
import {PsychObject} from '../util/PsychObject.js';
import {TonePlayer} from './TonePlayer.js';
import {TrackPlayer} from './TrackPlayer.js';
import {AudioClipPlayer} from './AudioClipPlayer.js';
/**

View File

@ -7,7 +7,7 @@
* @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 { 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
*/
import {SoundPlayer} from './SoundPlayer';
import {SoundPlayer} from './SoundPlayer.js';
/**