Skip to content

Commit

Permalink
fix: formatting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bajrangCoder committed Dec 6, 2024
1 parent 6e4591b commit cb1cac8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
"cordova-clipboard": {},
"cordova-plugin-buildinfo": {},
"cordova-plugin-device": {},
"cordova-plugin-file": {},
"cordova-plugin-file": {
"ANDROIDX_WEBKIT_VERSION": "1.4.0"
},
"cordova-plugin-sftp": {},
"cordova-plugin-server": {},
"cordova-plugin-ftp": {},
Expand Down
6 changes: 5 additions & 1 deletion src/lib/loadPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,11 @@ export default async function loadPlugin(pluginId, justInstalled = false) {
const $script = <script src={Url.join(baseUrl, "main.js")}></script>;

$script.onerror = (error) => {
reject(new Error(`Failed to load script for plugin ${pluginId}: ${error.message || error}`));
reject(
new Error(
`Failed to load script for plugin ${pluginId}: ${error.message || error}`,
),
);
};

$script.onload = async () => {
Expand Down
10 changes: 5 additions & 5 deletions www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,11 +164,11 @@

<title>Acode</title>
<!--styles-->
<link rel="stylesheet" href="./css/build/218.css">
<link rel="stylesheet" href="./css/build/32.css">
<link rel="stylesheet" href="./css/build/383.css">
<link rel="stylesheet" href="./css/build/53.css">
<link rel="stylesheet" href="./css/build/609.css">
<link rel="stylesheet" href="./css/build/327.css">
<link rel="stylesheet" href="./css/build/450.css">
<link rel="stylesheet" href="./css/build/599.css">
<link rel="stylesheet" href="./css/build/608.css">
<link rel="stylesheet" href="./css/build/725.css">
<link rel="stylesheet" href="./css/build/about.css">
<link rel="stylesheet" href="./css/build/customTheme.css">
<link rel="stylesheet" href="./css/build/donate.css">
Expand Down

0 comments on commit cb1cac8

Please sign in to comment.