Skip to content

Commit

Permalink
Merge pull request #2 from Edofre/v1.0.2
Browse files Browse the repository at this point in the history
Added proper bower-asset path
  • Loading branch information
Edofre committed Nov 19, 2016
2 parents 4ba64b6 + 55f10f9 commit 010cbc2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/FullcalendarServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ public function boot()

$this->publishes([
// Fullcalendar library
__DIR__ . '/../../../bower/fullcalendar/dist/fullcalendar.css' => public_path('css/fullcalendar.css'),
__DIR__ . '/../../../bower/fullcalendar/dist/fullcalendar.print.css' => public_path('css/fullcalendar.print.css'),
__DIR__ . '/../../../bower/fullcalendar/dist/fullcalendar.js' => public_path('js/fullcalendar.js'),
__DIR__ . '/../../../bower/fullcalendar/dist/locale-all.js' => public_path('js/locale-all.js'),
__DIR__ . '/../../../bower/fullcalendar/dist/gcal.js' => public_path('js/gcal.js'),
__DIR__ . '/../../../bower-asset/fullcalendar/dist/fullcalendar.css' => public_path('css/fullcalendar.css'),
__DIR__ . '/../../../bower-asset/fullcalendar/dist/fullcalendar.print.css' => public_path('css/fullcalendar.print.css'),
__DIR__ . '/../../../bower-asset/fullcalendar/dist/fullcalendar.js' => public_path('js/fullcalendar.js'),
__DIR__ . '/../../../bower-asset/fullcalendar/dist/locale-all.js' => public_path('js/locale-all.js'),
__DIR__ . '/../../../bower-asset/fullcalendar/dist/gcal.js' => public_path('js/gcal.js'),
// Moment library
__DIR__ . '/../../../bower/moment/moment.js' => public_path('js/moment.js'),
__DIR__ . '/../../../bower-asset/moment/moment.js' => public_path('js/moment.js'),
], 'fullcalendar');
}

Expand Down

0 comments on commit 010cbc2

Please sign in to comment.