fixed it..
This commit is contained in:
parent
94e8d35259
commit
4912890dfc
@ -44,10 +44,14 @@
|
|||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
var hash_split = location.hash.split('#');
|
var hash_split = location.hash.split('#');
|
||||||
|
|
||||||
if (hash_split[1] != undefined) {
|
if (hash_split[1] != undefined && document.getElementById(hash_split[1]) != null) {
|
||||||
document.getElementById(hash_split[1]).scrollIntoView({
|
document.getElementById(hash_split[1]).scrollIntoView({
|
||||||
behavior: 'smooth'
|
behavior: 'smooth'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
@endpush
|
||||||
|
|
||||||
|
@push('scripts_start')
|
||||||
|
<script src="{{ asset('public/vendor/bootstrap-notify/bootstrap-notify.min.js') }}"></script>
|
||||||
@endpush
|
@endpush
|
@ -78,11 +78,6 @@
|
|||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
@endif
|
|
||||||
|
|
||||||
@push('scripts_start')
|
|
||||||
<script src="{{ asset('public/vendor/bootstrap-notify/bootstrap-notify.min.js') }}"></script>
|
|
||||||
@endpush
|
|
||||||
|
|
||||||
@push('body_js')
|
@push('body_js')
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@ -103,3 +98,5 @@
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
@endpush
|
@endpush
|
||||||
|
|
||||||
|
@endif
|
||||||
|
@ -79,28 +79,24 @@
|
|||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@push('body_js')
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.addEventListener('mark-read', event => {
|
||||||
|
if (event.detail.type == 'import') {
|
||||||
|
$.notify(event.detail.message, {
|
||||||
|
type: 'success',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
window.addEventListener('mark-read-all', event => {
|
||||||
|
if (event.detail.type == 'import') {
|
||||||
|
$.notify(event.detail.message, {
|
||||||
|
type: 'success',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
@endpush
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
@push('scripts_start')
|
|
||||||
<script src="{{ asset('public/vendor/bootstrap-notify/bootstrap-notify.min.js') }}"></script>
|
|
||||||
@endpush
|
|
||||||
|
|
||||||
@push('body_js')
|
|
||||||
<script type="text/javascript">
|
|
||||||
window.addEventListener('mark-read', event => {
|
|
||||||
if (event.detail.type == 'import') {
|
|
||||||
$.notify(event.detail.message, {
|
|
||||||
type: 'success',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
window.addEventListener('mark-read-all', event => {
|
|
||||||
if (event.detail.type == 'import') {
|
|
||||||
$.notify(event.detail.message, {
|
|
||||||
type: 'success',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
@endpush
|
|
||||||
|
@ -222,28 +222,24 @@
|
|||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@push('body_js')
|
||||||
|
<script type="text/javascript">
|
||||||
|
window.addEventListener('mark-read', event => {
|
||||||
|
if (event.detail.type == 'recurring-{{ $type }}') {
|
||||||
|
$.notify(event.detail.message, {
|
||||||
|
type: 'success',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
window.addEventListener('mark-read-all', event => {
|
||||||
|
if (event.detail.type == 'recurring-{{ $type }}') {
|
||||||
|
$.notify(event.detail.message, {
|
||||||
|
type: 'success',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
@endpush
|
||||||
@endif
|
@endif
|
||||||
|
|
||||||
@push('scripts_start')
|
|
||||||
<script src="{{ asset('public/vendor/bootstrap-notify/bootstrap-notify.min.js') }}"></script>
|
|
||||||
@endpush
|
|
||||||
|
|
||||||
@push('body_js')
|
|
||||||
<script type="text/javascript">
|
|
||||||
window.addEventListener('mark-read', event => {
|
|
||||||
if (event.detail.type == 'recurring-{{ $type }}') {
|
|
||||||
$.notify(event.detail.message, {
|
|
||||||
type: 'success',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
window.addEventListener('mark-read-all', event => {
|
|
||||||
if (event.detail.type == 'recurring-{{ $type }}') {
|
|
||||||
$.notify(event.detail.message, {
|
|
||||||
type: 'success',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
@endpush
|
|
||||||
|
@ -222,11 +222,6 @@
|
|||||||
</div>
|
</div>
|
||||||
@endif
|
@endif
|
||||||
</div>
|
</div>
|
||||||
@endif
|
|
||||||
|
|
||||||
@push('scripts_start')
|
|
||||||
<script src="{{ asset('public/vendor/bootstrap-notify/bootstrap-notify.min.js') }}"></script>
|
|
||||||
@endpush
|
|
||||||
|
|
||||||
@push('body_js')
|
@push('body_js')
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
@ -247,3 +242,5 @@
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
@endpush
|
@endpush
|
||||||
|
|
||||||
|
@endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user