Skip to content

Commit

Permalink
Remove stretched from link (due to multiproduct)
Browse files Browse the repository at this point in the history
  • Loading branch information
murdercode committed Dec 10, 2024
1 parent ec432b9 commit 3c715da
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
15 changes: 6 additions & 9 deletions resources/views/widgetbay.blade.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
<div class="relative">
<iframe src="{{ $widgetbayLink }}" allow="fullscreen" scrolling="no"
class="{{ $heightListClass ?? 'shortcode_widgetbay' }} _iub_cs_activate"
frameborder="0" loading="lazy"
title="Offerta di Widgetbay"
style="width:100%;overflow-y:hidden;
<iframe src="{{ $widgetbayLink }}" allow="fullscreen" scrolling="no"
class="{{ $heightListClass ?? 'shortcode_widgetbay' }} _iub_cs_activate"
frameborder="0" loading="lazy"
title="Offerta di Widgetbay"
style="width:100%;overflow-y:hidden;
">
</iframe>
<a href="{{ $widgetbayLink }}" target="_blank" rel="sponsored nofollow" class="widgetbay_box stretched-link"></a>
</div>
</iframe>
4 changes: 3 additions & 1 deletion src/LaravelShortcodePlus.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@

final class LaravelShortcodePlus
{
public function __construct(protected string $content = '') {}
public function __construct(protected string $content = '')
{
}

public static function source(string $source): LaravelShortcodePlus
{
Expand Down
4 changes: 3 additions & 1 deletion src/LaravelShortcodePlusServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ public function configurePackage(Package $package): void
->hasMigration('create_laravel-shortcode-plus_table');
}

public function packageRegistered() {}
public function packageRegistered()
{
}

public function packageBooted(): void
{
Expand Down

0 comments on commit 3c715da

Please sign in to comment.