aboutsummaryrefslogtreecommitdiff
path: root/src/client/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/util')
-rw-r--r--src/client/util/DocumentManager.ts2
-rw-r--r--src/client/util/convertToCSSPTValue.js12
-rw-r--r--src/client/util/jsx-decl.d.ts1
3 files changed, 6 insertions, 9 deletions
diff --git a/src/client/util/DocumentManager.ts b/src/client/util/DocumentManager.ts
index 4816f3317..0101c2bcb 100644
--- a/src/client/util/DocumentManager.ts
+++ b/src/client/util/DocumentManager.ts
@@ -16,7 +16,7 @@ import { LinkAnchorBox } from '../views/nodes/LinkAnchorBox';
import { PresBox } from '../views/nodes/trails';
import { ScriptingGlobals } from './ScriptingGlobals';
import { SelectionManager } from './SelectionManager';
-const { Howl } = require('howler');
+import { Howl } from 'howler';
export class DocumentManager {
private static _instance: DocumentManager;
diff --git a/src/client/util/convertToCSSPTValue.js b/src/client/util/convertToCSSPTValue.js
index 179557953..66f8db5a1 100644
--- a/src/client/util/convertToCSSPTValue.js
+++ b/src/client/util/convertToCSSPTValue.js
@@ -1,18 +1,16 @@
'use strict';
-Object.defineProperty(exports, "__esModule", {
- value: true
+Object.defineProperty(exports, '__esModule', {
+ value: true,
});
exports.PT_TO_PX_RATIO = exports.PX_TO_PT_RATIO = undefined;
exports.default = convertToCSSPTValue;
exports.toClosestFontPtSize = toClosestFontPtSize;
-// var _FontSizeCommandMenuButton = require('./ui/FontSizeCommandMenuButton');
-
var SIZE_PATTERN = /([\d\.]+)(px|pt)/i;
-var PX_TO_PT_RATIO = exports.PX_TO_PT_RATIO = 0.7518796992481203; // 1 / 1.33.
-var PT_TO_PX_RATIO = exports.PT_TO_PX_RATIO = 1.33;
+var PX_TO_PT_RATIO = (exports.PX_TO_PT_RATIO = 0.7518796992481203); // 1 / 1.33.
+var PT_TO_PX_RATIO = (exports.PT_TO_PX_RATIO = 1.33);
function convertToCSSPTValue(styleValue) {
var matches = styleValue.match(SIZE_PATTERN);
@@ -40,4 +38,4 @@ function toClosestFontPtSize(styleValue) {
return _FontSizeCommandMenuButton.FONT_PT_SIZES.reduce(function (prev, curr) {
return Math.abs(curr - originalPTValue) < Math.abs(prev - originalPTValue) ? curr : prev;
}, Number.NEGATIVE_INFINITY);
-} \ No newline at end of file
+}
diff --git a/src/client/util/jsx-decl.d.ts b/src/client/util/jsx-decl.d.ts
deleted file mode 100644
index 532f06178..000000000
--- a/src/client/util/jsx-decl.d.ts
+++ /dev/null
@@ -1 +0,0 @@
-declare module 'react-jsx-parser';