Display image icon tooltip instantly

refs #9300
This commit is contained in:
Matthias Jentsch 2015-05-21 15:02:23 +02:00
parent 598ef1e8f4
commit f808d373ea
1 changed files with 4 additions and 2 deletions

View File

@ -30,7 +30,8 @@ class Zend_View_Helper_IconImage extends Zend_View_Helper_Abstract
null, null,
array( array(
'alt' => $object->host_icon_image_alt, 'alt' => $object->host_icon_image_alt,
'title' => $object->host_icon_image_alt 'title' => $object->host_icon_image_alt,
'data-tooltip-delay' => 0
) )
); );
} }
@ -51,7 +52,8 @@ class Zend_View_Helper_IconImage extends Zend_View_Helper_Abstract
null, null,
array( array(
'alt' => $object->service_icon_image_alt, 'alt' => $object->service_icon_image_alt,
'title' => $object->service_icon_image_alt 'title' => $object->service_icon_image_alt,
'data-tooltip-delay' => 0
) )
); );
} }