Skip to content

Commit c5c64af

Browse files
Updated lazy loading to eager loading for the menu bar.
1 parent e979eaf commit c5c64af

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

NumberSearch.Mvc/Views/Home/Index.cshtml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
ViewData["Title"] = "VOIP";
33
Layout = "~/Views/Shared/_Layout.cshtml";
44
}
5-
<video autoplay muted loop playsinline width="100%" height="100%" class="" loading="lazy">
6-
<source src="~/videos/AccelerateNetworks2024.mp4" type="video/mp4" loading="lazy">
5+
<video autoplay muted loop playsinline width="100%" height="100%">
6+
<source src="~/videos/AccelerateNetworks2024.mp4" type="video/mp4">
77
<img class="first-slide img-fluid" src="./images/scaled/GRP2615-front.webp" alt="First slide" loading="lazy">
88
</video>
99
<!-- Value Proposition-->
@@ -116,7 +116,7 @@
116116
<div class="carousel-inner">
117117
<div class="carousel-item active">
118118
<a href="/hardware">
119-
<img src="./images/carousel/GRP2670-10x5.webp" class="d-block w-100" alt="...">
119+
<img src="./images/carousel/GRP2670-10x5.webp" class="d-block w-100" alt="..." loading="eager">
120120
<div class="carousel-caption d-none d-md-block text-dark">
121121
<h5>GRP2670</h5>
122122
<p>The GRP2670 features 48 virtual multi-purpose keys (VPKs), integrated Wi-Fi, Bluetooth support, a 7-inch touchscreen and more, and is supported by Grandstream’s Device Management System (GDMS).</p>
@@ -125,7 +125,7 @@
125125
</div>
126126
<div class="carousel-item">
127127
<a href="/hardware">
128-
<img src="./images/carousel/Yealink-T54W-10x5.webp" class="d-block w-100" alt="...">
128+
<img src="./images/carousel/Yealink-T54W-10x5.webp" class="d-block w-100" alt="..." loading="lazy">
129129
<div class="carousel-caption d-none d-md-block text-dark">
130130
<h5>T54W</h5>
131131
<p>With modern Bluetooth & WiFi built in, a 4.3 inch tilting screen, Power over Ethernet support the Yealink T54W is a versatile, capable and ready to serve you!</p>
@@ -134,7 +134,7 @@
134134
</div>
135135
<div class="carousel-item">
136136
<a href="/hardware">
137-
<img src="./images/carousel/WP816_4-10x5.webp" class="d-block w-100" alt="...">
137+
<img src="./images/carousel/WP816_4-10x5.webp" class="d-block w-100" alt="..." loading="lazy">
138138
<div class="carousel-caption d-none d-md-block text-dark">
139139
<h5>WP816</h5>
140140
<p>The WP816 includes advanced antenna design and roaming support. By adding 6-hour talk time and HD voice with dual-MICs, the WP816 offers an affordable option and comes equipped with a combination of features, mobility, and durability to suit all portable telephony needs.</p>
@@ -143,7 +143,7 @@
143143
</div>
144144
<div class="carousel-item">
145145
<a href="/hardware">
146-
<img src="./images/carousel/Yealink-T57W-10x5.webp" class="d-block w-100" alt="...">
146+
<img src="./images/carousel/Yealink-T57W-10x5.webp" class="d-block w-100" alt="..." loading="lazy">
147147
<div class="carousel-caption d-none d-md-block text-dark">
148148
<h5>T57W</h5>
149149
<p>Premium-level phone for executives and busy managers with heavy call load.</p>

NumberSearch.Mvc/Views/Shared/_Layout.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@
9191
<div class="col-xl-2 col-lg-2 col-md-4 col-sm-4 col-6">
9292
@*Desktop*@
9393
<a href="/" class="navbar-brand mx-auto font-weight-normal d-none d-sm-block">
94-
<img src="~/images/scaled/accelerate.png" alt="Accelerate Networks" class="img-fluid" style="width: 10rem;" loading="lazy">
94+
<img src="~/images/scaled/accelerate.png" alt="Accelerate Networks" class="img-fluid" style="width: 10rem;" loading="eager">
9595
</a>
9696
@*Mobile*@
9797
<a href="/" class="navbar-brand d-sm-none w-75 mx-auto d-block">
98-
<img src="~/images/scaled/accelerate.png" alt="Accelerate Networks" class="img-fluid p-1 ml-3" loading="lazy">
98+
<img src="~/images/scaled/accelerate.png" alt="Accelerate Networks" class="img-fluid p-1 ml-3" loading="eager">
9999
</a>
100100
</div>
101101
<div class="col-xl-2 col-lg-2 col-md-4 col-sm-4 col-6">

0 commit comments

Comments
 (0)