Skip to content

Commit 5f4fa11

Browse files
committed
Update littlelink.blade.php
1 parent 6b1a155 commit 5f4fa11

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

resources/views/littlelink.blade.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -267,10 +267,10 @@ function get_operating_system() {
267267
@if($user_browser === 'Chrome' or get_operating_system() == 'mobile')
268268
<script>{!! file_get_contents(base_path("littlelink/js/jquery.min.js")) !!}</script>
269269
<div align="right" class="sharediv"><div><span class="sharebutton button-hover icon-hover" id='share-share-button'><i style="color: black;" class="fa-solid fa-share sharebutton-img share-icon hvr-icon"></i><span class="sharebutton-mb">Share</span></span></div></div>
270-
<span class="copy-icon" role="button">
270+
<span class="copy-icon" role="button" aria-label="Share this page">
271271
</span>
272272
@else
273-
<span class="copy-icon" role="button">
273+
<span class="copy-icon" role="button" aria-label="Share this page">
274274
<div onclick="alert('URL has been copied to your clipboard!')" align="right" class="sharediv"><div><a class="sharebutton button-hover icon-hover"><i style="color: black;" class="fa-solid fa-share sharebutton-img share-icon hvr-icon"></i><span class="sharebutton-mb">Share</span></a></div></div>
275275
</span>
276276
@endif
@@ -300,7 +300,7 @@ function get_operating_system() {
300300
@php $icons = DB::table('links')->where('user_id', $userinfo->id)->where('button_id', 94)->get(); @endphp
301301
<div class="row fadein social-icon-div">
302302
@foreach($icons as $icon)
303-
<a class="social-hover social-link" href="{{ route('clickNumber') . '/' . $icon->id. "?" . $icon->link}}" @if(theme('open_links_in_same_tab') != "true")target="_blank"@endif><i class="social-icon fa-brands fa-{{$icon->title}}"></i></a>
303+
<a class="social-hover social-link" href="{{ route('clickNumber') . '/' . $icon->id. "?" . $icon->link}}" title="{{ucfirst($icon->title)}}" aria-label="{{ucfirst($icon->title)}}" @if(theme('open_links_in_same_tab') != "true")target="_blank"@endif><i class="social-icon fa-brands fa-{{$icon->title}}"></i></a>
304304
@endforeach
305305
</div>
306306

0 commit comments

Comments
 (0)