mirror of
https://github.com/lewismoten/data-over-audio.git
synced 2026-04-17 11:46:02 +08:00
add file extensions
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import BasePanel from './BasePanel';
|
||||
import { hertz } from '../Humanize';
|
||||
import BasePanel from './BasePanel.js';
|
||||
import { hertz } from '../Humanize.js';
|
||||
class AvailableFskPairsPanel extends BasePanel {
|
||||
constructor() {
|
||||
super('Available FSK Pairs');
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import Dispatcher from "../Dispatcher";
|
||||
import Dispatcher from "../Dispatcher.js";
|
||||
|
||||
let lastId = 0;
|
||||
const clamp = (value, min, max) => Math.max(min, Math.min(value, max));
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { htmlEncode } from '../converters';
|
||||
import BasePanel from './BasePanel';
|
||||
import { htmlEncode } from '../converters.js';
|
||||
import BasePanel from './BasePanel.js';
|
||||
|
||||
class CodePanel extends BasePanel {
|
||||
constructor(title) {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import BasePanel from './BasePanel';
|
||||
import BasePanel from './BasePanel.js';
|
||||
|
||||
class FrequencyGraphPanel extends BasePanel {
|
||||
constructor() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import BasePanel from './BasePanel';
|
||||
import BasePanel from './BasePanel.js';
|
||||
|
||||
class FrequencyPanel extends BasePanel {
|
||||
constructor() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import BasePanel from './BasePanel';
|
||||
import BasePanel from './BasePanel.js';
|
||||
|
||||
class GraphConfigurationPanel extends BasePanel {
|
||||
constructor() {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { bytesToText, textToBytes, urlToBytes, bytesToUrl } from '../converters';
|
||||
import { byteSize } from '../Humanize';
|
||||
import BasePanel from './BasePanel';
|
||||
import { bytesToText, textToBytes, urlToBytes, bytesToUrl } from '../converters.js';
|
||||
import { byteSize } from '../Humanize.js';
|
||||
import BasePanel from './BasePanel.js';
|
||||
|
||||
class MessagePanel extends BasePanel {
|
||||
constructor() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import BasePanel from './BasePanel';
|
||||
import BasePanel from './BasePanel.js';
|
||||
|
||||
const media = {
|
||||
audio: {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import BasePanel from './BasePanel';
|
||||
import BasePanel from './BasePanel.js';
|
||||
|
||||
class OutputPanel extends BasePanel {
|
||||
constructor() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import BasePanel from './BasePanel';
|
||||
import BasePanel from './BasePanel.js';
|
||||
|
||||
class PacketErrorPanel extends BasePanel {
|
||||
constructor() {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import BasePanel from './BasePanel';
|
||||
import { byteSize, metricNumber } from '../Humanize';
|
||||
import BasePanel from './BasePanel.js';
|
||||
import { byteSize, metricNumber } from '../Humanize.js';
|
||||
|
||||
class PacketizationPanel extends BasePanel {
|
||||
constructor() {
|
||||
|
||||
@@ -1,7 +1,6 @@
|
||||
import { bytesToText, bytesToUrl } from '../converters';
|
||||
import BasePanel from './BasePanel';
|
||||
import * as AudioReceiver from '../AudioReceiver';
|
||||
import * as StreamManager from '../StreamManager';
|
||||
import { bytesToText, bytesToUrl } from '../converters.js';
|
||||
import BasePanel from './BasePanel.js';
|
||||
import * as AudioReceiver from '../AudioReceiver.js';
|
||||
|
||||
class ReceivePanel extends BasePanel {
|
||||
constructor() {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import BasePanel from './BasePanel';
|
||||
import BasePanel from './BasePanel.js';
|
||||
|
||||
const clamp = (value, min, max) => Math.max(min, Math.min(value, max));
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import BasePanel from './BasePanel';
|
||||
import * as Humanize from '../Humanize';
|
||||
import BasePanel from './BasePanel.js';
|
||||
import * as Humanize from '../Humanize.js';
|
||||
|
||||
class SpeedPanel extends BasePanel {
|
||||
constructor() {
|
||||
|
||||
Reference in New Issue
Block a user