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:
parent
24f43ccbbb
commit
7f6b37d720
@ -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';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -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";
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -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>
|
||||||
|
@ -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';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -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';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -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';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -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';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user