17 lines
481 B
Plaintext
17 lines
481 B
Plaintext
@using Nop.Core.Domain.Common
|
|
@inject CommonSettings CommonSettings
|
|
@if (CommonSettings.DisplayJavaScriptDisabledWarning)
|
|
{
|
|
<noscript>
|
|
<div class="noscript">
|
|
<p>
|
|
<strong>JavaScript seems to be disabled in your browser.</strong>
|
|
</p>
|
|
<p>
|
|
You must have JavaScript enabled in your browser to utilize the functionality of
|
|
this website.
|
|
</p>
|
|
</div>
|
|
</noscript>
|
|
}
|