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:
parent
24f43ccbbb
commit
7f6b37d720
@ -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';
|
||||
|
||||
|
||||
/**
|
||||
|
@ -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";
|
||||
|
||||
|
||||
/**
|
||||
|
@ -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>
|
||||
|
@ -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';
|
||||
|
||||
|
||||
/**
|
||||
|
@ -7,7 +7,7 @@
|
||||
* @license Distributed under the terms of the MIT License
|
||||
*/
|
||||
|
||||
import {PsychObject} from '../util/PsychObject';
|
||||
import {PsychObject} from '../util/PsychObject.js';
|
||||
|
||||
|
||||
/**
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
import * as Tone from 'tone';
|
||||
import { isNumeric } from "../util/Util.js";
|
||||
import {SoundPlayer} from './SoundPlayer';
|
||||
import {SoundPlayer} from './SoundPlayer.js';
|
||||
|
||||
|
||||
/**
|
||||
|
@ -7,7 +7,7 @@
|
||||
* @license Distributed under the terms of the MIT License
|
||||
*/
|
||||
|
||||
import {SoundPlayer} from './SoundPlayer';
|
||||
import {SoundPlayer} from './SoundPlayer.js';
|
||||
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user