visibility: hidden;
display: none
}</style>
- <style type="text/css">body {
- background-color: # $ bgcolor;
- }</style>
+ <style type="text/css">body {background-color:#$bgcolor;}</style>
<script type="text/javascript">
FB_DEFAULT_LANG = '$lang';
INDEX_EXT = '$index_ext';
$this->fields['tooltipTimer'] = array('type' => 'float', 'default' => 3, "editable" => true, 'label' => __("Temps maximum d'apparition des infos-bulles (en secondes)"));
$this->forms['general'] = array('label' => __('Fonctionnalités générales'),
- 'fieldsnames' => array('navOrder', 'tooltipTimer', 'tooltipMaxWidth', 'preload', 'pages', 'width', 'height'));
+ 'fieldsnames' => array('navOrder', 'tooltipTimer','preload', 'pages', 'width', 'height'));
//.
//
return new webVideoPopupLink($id, $init, $compiler);
}
case 11:
- if ($init['to'] == 'fullScreen') {
- return null;
- }
return new actionLink($id, $init, $compiler);
case 12:
protected $_share = array('facebook', 'twitter', 'googleplus', 'linkedin', 'viadeo');
public function getURL() {
- if (in_array($this->to, $this->_share)) {
- return '#';
- }
- return '#/' . $this->to;
+ return '#';
}
public function getClasses() {
if (in_array($this->to, $this->_share)) {
return parent::getAdditionnalContent() . ' data-service="' . $this->to . '" ';
} else {
- return parent::getClasses();
+ return parent::getClasses() . ' data-action="' . $this->to . '" ';
}
}