Skip to content

Commit 4885471

Browse files
committed
Fix path error
1 parent f46db1e commit 4885471

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

easycoder/easycoder-min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

easycoder/easycoder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3953,7 +3953,7 @@ const EasyCoder = {
39533953
pathname = ``;
39543954
}
39553955
if (typeof EasyCoder_Plugins === `undefined`) {
3956-
this.loadPluginJs(`${window.location.href}plugins.js`);
3956+
this.loadPluginJs(`${window.location.href}`);
39573957
} else {
39583958
this.pluginsPath = pathname;
39593959
EasyCoder_Plugins.getGlobalPlugins(

easycoder/easycoder.zip

-5 Bytes
Binary file not shown.

js/easycoder/Main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ const EasyCoder = {
462462
pathname = ``;
463463
}
464464
if (typeof EasyCoder_Plugins === `undefined`) {
465-
this.loadPluginJs(`${window.location.href}plugins.js`);
465+
this.loadPluginJs(`${window.location.href}`);
466466
} else {
467467
this.pluginsPath = pathname;
468468
EasyCoder_Plugins.getGlobalPlugins(

0 commit comments

Comments
 (0)