Skip to content

Commit

Permalink
6.18.2
Browse files Browse the repository at this point in the history
  • Loading branch information
scottjpearson committed Nov 22, 2024
1 parent c3809e6 commit a98022f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,10 @@ public static function getRelevantChoices() {
}

public static function getJQueryURL(): string {
$module = self::getModule();
$fileOrder = [
APP_PATH_DOCROOT."Resources/webpack/js/bundle.js" => APP_PATH_WEBROOT."Resources/webpack/js/bundle.js",
__DIR__."/js/jquery.min.js" => self::link("js/jquery.min.js"),
__DIR__."/js/jquery.min.js" => $module->getUrl("js/jquery.min.js"),
];
foreach ($fileOrder as $file => $url) {
if (file_exists($file)) {
Expand Down
2 changes: 1 addition & 1 deletion CareerDev.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class CareerDev {
public static $passedModule = NULL;

public static function getVersion() {
return "6.18.1";
return "6.18.2";
}

public static function getLocalhostPluginPid() {
Expand Down

0 comments on commit a98022f

Please sign in to comment.