Skip to content

Commit

Permalink
Fix file paths for injectScript
Browse files Browse the repository at this point in the history
  • Loading branch information
stickz committed May 1, 2023
1 parent 551af5d commit b7f9d5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/filedrop/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ else

plugin.onLangLoaded = function()
{
injectScript(plugin.path+"/jquery.filedrop.js",function()
injectScript(plugin.path+"jquery.filedrop.js",function()
{
$("#maincont").filedrop(
{
Expand Down
2 changes: 1 addition & 1 deletion plugins/history/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ if(plugin.canChangeMenu())

plugin.onLangLoaded = function()
{
injectScript(plugin.path+"/desktop-notify.js",function()
injectScript(plugin.path+"desktop-notify.js",function()
{
plugin.attachPageToOptions( $("<div>").attr("id","st_history").html(
"<div class='checkbox'>" +
Expand Down

0 comments on commit b7f9d5f

Please sign in to comment.