Originally Posted by
thyon
You can just edit my tips.js file. I suppress the tips for the main items, you can copy that code into the menuitems.
Thank you thyon, now it works. I'm working on an extension, that hides the ugly black mouseover texts by contao. There I use this to override Tips.Contao
Code:
Tips.Contao.implement({
options: {
hideElements: '.tl_level_1_group a, a.navigation, a[class^=header_]',
onShow: function(tip, hovered) {
if(hovered.match(this.options.hideElements)) {
this.tip.setStyle('display', 'none');
}
else {
this.tip.setStyle('display', 'block');
}
}
}
});
Found a little error in \system\modules\ztoptab\classes\TopTab.php line 233
A missing space
Code:
$arrNavigationModules[$grp]['icon'] = sprintf('style="background-image:url(\'%s%s\')"', TL_SCRIPT_URL, $groupicon);
$arrNavigationModules[$grp]['icon'] = sprintf(' style="background-image:url(\'%s%s\')"', TL_SCRIPT_URL, $groupicon);
And a JS error
/contao/main.php?do=login
TypeError: Theme.focusInput is not a function
Code:
<script>
window.addEvent('domready', function() {
Theme.focusInput("tl_user");
});
</script>
Bookmarks