mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
Removed a few remaining vue references
This commit is contained in:
parent
a46b248cf4
commit
f5fefbdb06
@ -18,11 +18,6 @@
|
|||||||
@import "lists";
|
@import "lists";
|
||||||
@import "pages";
|
@import "pages";
|
||||||
|
|
||||||
[v-cloak] {
|
|
||||||
display: none; opacity: 0;
|
|
||||||
animation-name: none !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Jquery Sortable Styles
|
// Jquery Sortable Styles
|
||||||
.dragged {
|
.dragged {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<div dir="auto">
|
<div dir="auto">
|
||||||
|
|
||||||
<h1 class="break-text" v-pre id="bkmrk-page-title">{{$page->name}}</h1>
|
<h1 class="break-text" id="bkmrk-page-title">{{$page->name}}</h1>
|
||||||
|
|
||||||
<div style="clear:left;"></div>
|
<div style="clear:left;"></div>
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
'errors.image_upload_error',
|
'errors.image_upload_error',
|
||||||
])
|
])
|
||||||
|
|
||||||
<textarea id="html-editor" name="html" rows="5" v-pre
|
<textarea id="html-editor" name="html" rows="5"
|
||||||
@if($errors->has('html')) class="text-neg" @endif>@if(isset($model) || old('html')){{ old('html') ? old('html') : $model->html }}@endif</textarea>
|
@if($errors->has('html')) class="text-neg" @endif>@if(isset($model) || old('html')){{ old('html') ? old('html') : $model->html }}@endif</textarea>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div v-pre>
|
<div>
|
||||||
@if($activity->user)
|
@if($activity->user)
|
||||||
<a href="{{ $activity->user->getProfileUrl() }}">{{ $activity->user->name }}</a>
|
<a href="{{ $activity->user->getProfileUrl() }}">{{ $activity->user->name }}</a>
|
||||||
@else
|
@else
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
<nav id="book-tree" class="book-tree mb-xl" v-pre aria-label="{{ trans('entities.books_navigation') }}">
|
<nav id="book-tree"
|
||||||
|
class="book-tree mb-xl"
|
||||||
|
aria-label="{{ trans('entities.books_navigation') }}">
|
||||||
|
|
||||||
<h5>{{ trans('entities.books_navigation') }}</h5>
|
<h5>{{ trans('entities.books_navigation') }}</h5>
|
||||||
|
|
||||||
<ul class="sidebar-page-list mt-xs menu entity-list">
|
<ul class="sidebar-page-list mt-xs menu entity-list">
|
||||||
|
Loading…
Reference in New Issue
Block a user