From: Abijeet Date: Sat, 12 May 2018 12:56:35 +0000 (+0530) Subject: Changed the location of the "view-toggle" to be under the books views. X-Git-Tag: v0.22.0~1^2~11^2~2 X-Git-Url: http://source.bookstackapp.com/bookstack/commitdiff_plain/refs/pull/830/head Changed the location of the "view-toggle" to be under the books views. Signed-off-by: Abijeet --- diff --git a/resources/views/books/index.blade.php b/resources/views/books/index.blade.php index d3e0d1297..84150203f 100644 --- a/resources/views/books/index.blade.php +++ b/resources/views/books/index.blade.php @@ -3,7 +3,7 @@ @section('toolbar')
- @include('partials/book-view-toggle', ['booksViewType' => $booksViewType]) + @include('books/view-toggle', ['booksViewType' => $booksViewType])
diff --git a/resources/views/partials/book-view-toggle.blade.php b/resources/views/books/view-toggle.blade.php similarity index 100% rename from resources/views/partials/book-view-toggle.blade.php rename to resources/views/books/view-toggle.blade.php diff --git a/resources/views/home-book.blade.php b/resources/views/home-book.blade.php index e3b523570..03fce4b8e 100644 --- a/resources/views/home-book.blade.php +++ b/resources/views/home-book.blade.php @@ -4,7 +4,7 @@
@icon('expand-text'){{ trans('common.toggle_details') }} - @include('partials/book-view-toggle', ['booksViewType' => $booksViewType]) + @include('books/view-toggle', ['booksViewType' => $booksViewType])
@stop