Skip to content

Commit

Permalink
use wildcard in version
Browse files Browse the repository at this point in the history
  • Loading branch information
ibelar committed Sep 7, 2023
1 parent c43aca7 commit 5812f53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Page.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ class Page extends View
public string $title = '';
protected ?Layout $layout = null;

/** Used a specific js package version or leave empty for latest. ex: '1.5.0' */
public string $fohnJsVersion = '';
public string $jQueryVersion = '';
/** Used a specific js package version, ex: '1.5.0', a wildcard or leave empty for latest. */
public string $fohnJsVersion = '^1';
public string $jQueryVersion = '^3';

public ?string $toastSelector = '#fohn-toast';
public string $jsBundleLocation = '/public';
Expand Down

0 comments on commit 5812f53

Please sign in to comment.