From 438918ad4a9855d096d5dce0a78b167893492d95 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 17 Feb 2022 09:45:03 +0100 Subject: [PATCH] wip #5084 @0.25 --- src/Links/LayerLink.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Links/LayerLink.php b/src/Links/LayerLink.php index ded0bf2..d9758b6 100644 --- a/src/Links/LayerLink.php +++ b/src/Links/LayerLink.php @@ -2,7 +2,7 @@ namespace Fluidbook\Tools\Links; -class LayerLink extends imageLink +class LayerLink extends ImageLink { protected $maxzoom_default = 4; public $defaultZIndex = 31; @@ -11,7 +11,7 @@ class LayerLink extends imageLink { $attributes = $this->getZoomAttributes(); if (!$this->rightClone) { - zoomLink::generateImage($attributes, $this->compiler, 'layerlink', 'layer'); + ZoomLink::generateImage($attributes, $this->compiler, 'layerlink', 'layer'); } return 'background-image:url(' . $this->getImageUrl() . ');background-size:' . $this->getBackgroundSize() . ';background-position:' . $this->getBackgroundPosition() . ';background-repeat:no-repeat;'; } -- 2.39.5