Skip to content

Commit cb1cac8

Browse files
committed
fix: formatting issue
1 parent 6e4591b commit cb1cac8

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
"cordova-clipboard": {},
2525
"cordova-plugin-buildinfo": {},
2626
"cordova-plugin-device": {},
27-
"cordova-plugin-file": {},
27+
"cordova-plugin-file": {
28+
"ANDROIDX_WEBKIT_VERSION": "1.4.0"
29+
},
2830
"cordova-plugin-sftp": {},
2931
"cordova-plugin-server": {},
3032
"cordova-plugin-ftp": {},

src/lib/loadPlugin.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ export default async function loadPlugin(pluginId, justInstalled = false) {
1212
const $script = <script src={Url.join(baseUrl, "main.js")}></script>;
1313

1414
$script.onerror = (error) => {
15-
reject(new Error(`Failed to load script for plugin ${pluginId}: ${error.message || error}`));
15+
reject(
16+
new Error(
17+
`Failed to load script for plugin ${pluginId}: ${error.message || error}`,
18+
),
19+
);
1620
};
1721

1822
$script.onload = async () => {

www/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -164,11 +164,11 @@
164164

165165
<title>Acode</title>
166166
<!--styles-->
167-
<link rel="stylesheet" href="./css/build/218.css">
168-
<link rel="stylesheet" href="./css/build/32.css">
169-
<link rel="stylesheet" href="./css/build/383.css">
170-
<link rel="stylesheet" href="./css/build/53.css">
171-
<link rel="stylesheet" href="./css/build/609.css">
167+
<link rel="stylesheet" href="./css/build/327.css">
168+
<link rel="stylesheet" href="./css/build/450.css">
169+
<link rel="stylesheet" href="./css/build/599.css">
170+
<link rel="stylesheet" href="./css/build/608.css">
171+
<link rel="stylesheet" href="./css/build/725.css">
172172
<link rel="stylesheet" href="./css/build/about.css">
173173
<link rel="stylesheet" href="./css/build/customTheme.css">
174174
<link rel="stylesheet" href="./css/build/donate.css">

0 commit comments

Comments
 (0)