Update views

This commit is contained in:
Daniel Supernault 2019-12-11 01:25:56 -07:00
parent c369882b48
commit b94af397c9
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
6 changed files with 4 additions and 41 deletions

View File

@ -7,7 +7,9 @@
<div class="d-flex justify-content-between align-items-center">
<div></div>
<a href="/account/activity" class="cursor-pointer font-weight-bold text-primary">Notifications</a>
@if(request()->user()->profile->is_private)
<a href="/account/follow-requests" class="cursor-pointer font-weight-bold text-dark">Follow Requests</a>
@endif
<div></div>
</div>
</div>
@ -17,11 +19,6 @@
@endsection
@push('scripts')
<script type="text/javascript" src="{{ mix('js/compose.js') }}"></script>
<script type="text/javascript" src="{{ mix('js/activity.js') }}"></script>
<script type="text/javascript">
new Vue({
el: '#content'
});
</script>
<script type="text/javascript">window.App.boot();</script>
@endpush

View File

@ -49,6 +49,7 @@
@push('scripts')
<script type="text/javascript">
App.boot();
$(document).ready(function() {
$(document).on('click', '.request-action', function(e) {
e.preventDefault();

View File

@ -24,9 +24,6 @@
@push('styles')
<style type="text/css">
body {
background: #fff !important;
}
.navbar {
border: none !important;
}

View File

@ -24,16 +24,6 @@
<meta property="og:video" content="{{$status->mediaUrl()}}">
@endif
@endpush
@push('styles')
<style type="text/css">
body {
background: #fff !important;
}
.navbar {
border: none !important;
}
</style>
@endpush
@push('scripts')
<script type="text/javascript" src="{{ mix('js/status.js') }}"></script>

View File

@ -6,17 +6,6 @@
@endsection
@push('styles')
<style type="text/css">
body {
background: #fff !important;
}
.navbar {
border: none !important;
}
</style>
@endpush
@push('scripts')
<script type="text/javascript" src="{{ mix('js/timeline.js') }}"></script>
<script type="text/javascript" src="{{ mix('js/compose.js') }}"></script>

View File

@ -6,17 +6,6 @@
@endsection
@push('styles')
<style type="text/css">
body {
background: #fff !important;
}
.navbar {
border: none !important;
}
</style>
@endpush
@push('scripts')
<script type="text/javascript" src="{{ mix('js/timeline.js') }}"></script>
<script type="text/javascript" src="{{ mix('js/compose.js') }}"></script>