Skip to content

Commit a2f5a73

Browse files
authored
Merge pull request #5 from laravelcm/update-config
Update config
2 parents 3b85a83 + 4f35552 commit a2f5a73

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Diff for: config/livewire-slide-over.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| Include CSS
1010
|--------------------------------------------------------------------------
1111
|
12-
| The modal uses TailwindCSS, if you don't use TailwindCSS you will need
12+
| The SLide over uses TailwindCSS, if you don't use TailwindCSS you will need
1313
| to set this parameter to true. This includes the modern-normalize css.
1414
|
1515
*/
@@ -22,7 +22,7 @@
2222
|
2323
| Livewire Slide Overs will inject the required Javascript in your blade template.
2424
| If you want to bundle the required Javascript you can set this to false
25-
| and add `require('vendor/laravelcm/livewire-slide-overs/resources/js/modal');`
25+
| and add `require('vendor/laravelcm/livewire-slide-overs/resources/js/slide-over');`
2626
| to your script bundler like webpack.
2727
|
2828
*/

Diff for: src/SlideOverPanel.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@ public function getListeners(): array
121121

122122
public function render(): View
123123
{
124-
if (config('livewire-slide-overs.include_js', true)) {
124+
if (config('livewire-slide-over.include_js', true)) {
125125
$jsPath = __DIR__ . '/../public/slide-over.js';
126126
}
127127

128-
if (config('livewire-slide-overs.include_css', true)) {
128+
if (config('livewire-slide-over.include_css', true)) {
129129
$cssPath = __DIR__ . '/../public/slide-over.css';
130130
}
131131

0 commit comments

Comments
 (0)