Skip to content

Commit 3c715da

Browse files
committed
Remove stretched from link (due to multiproduct)
1 parent ec432b9 commit 3c715da

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

resources/views/widgetbay.blade.php

+6-9
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
<div class="relative">
2-
<iframe src="{{ $widgetbayLink }}" allow="fullscreen" scrolling="no"
3-
class="{{ $heightListClass ?? 'shortcode_widgetbay' }} _iub_cs_activate"
4-
frameborder="0" loading="lazy"
5-
title="Offerta di Widgetbay"
6-
style="width:100%;overflow-y:hidden;
1+
<iframe src="{{ $widgetbayLink }}" allow="fullscreen" scrolling="no"
2+
class="{{ $heightListClass ?? 'shortcode_widgetbay' }} _iub_cs_activate"
3+
frameborder="0" loading="lazy"
4+
title="Offerta di Widgetbay"
5+
style="width:100%;overflow-y:hidden;
76
">
8-
</iframe>
9-
<a href="{{ $widgetbayLink }}" target="_blank" rel="sponsored nofollow" class="widgetbay_box stretched-link"></a>
10-
</div>
7+
</iframe>

src/LaravelShortcodePlus.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@
2222

2323
final class LaravelShortcodePlus
2424
{
25-
public function __construct(protected string $content = '') {}
25+
public function __construct(protected string $content = '')
26+
{
27+
}
2628

2729
public static function source(string $source): LaravelShortcodePlus
2830
{

src/LaravelShortcodePlusServiceProvider.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ public function configurePackage(Package $package): void
4242
->hasMigration('create_laravel-shortcode-plus_table');
4343
}
4444

45-
public function packageRegistered() {}
45+
public function packageRegistered()
46+
{
47+
}
4648

4749
public function packageBooted(): void
4850
{

0 commit comments

Comments
 (0)