Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update the AppletObjects.pl macro for changes in the ADD_JS_FILE usage #549

Merged
merged 2 commits into from
Mar 22, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions macros/AppletObjects.pl
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ =head1 DESCRIPTION

# Add basic functionality to the header of the question
sub _AppletObjects_init{
ADD_JS_FILE("apps/Base64/Base64.js", 1);
ADD_JS_FILE("apps/AppletSupport/ww_applet_support.js", 1);
ADD_JS_FILE("js/apps/Base64/Base64.js", 1);
ADD_JS_FILE("js/apps/AppletSupport/ww_applet_support.js", 1);
};

=head3 FlashApplet
Expand All @@ -39,7 +39,7 @@ =head3 FlashApplet
=cut

sub FlashApplet {
ADD_JS_FILE("apps/AppletSupport/AC_RunActiveContent.js", 1);
ADD_JS_FILE("js/apps/AppletSupport/AC_RunActiveContent.js", 1);
return new FlashApplet(@_);
}

Expand Down