Hi,
I have used former version of YiiBooster in my apps.
I’ve just upgraded to 1.0.7.
It seems that configuration in main.php to init bootstrap does not work.
The popover (which I configured to handle the trigger with another value than default for example) is loaded without my config.
It’s loaded with defaults…
My components config is quite simple :
'bootstrap'=>array('class'=>'bootstrap.components.Bootstrap',
'plugins'=>array('popover'=>array('options'=>array('selector'=>'[rel="test"]','trigger'=>'hover','html'=>true)),
)
),
The result code is :
jQuery(function($) {
jQuery('body').popover({'selector':'[rel=popover]'});
...
I changed the code in Bootstrap.php in the ‘registerTooltipandPopover’ function to take options into account but I think it’s not the good way…
Can someone help me to solve that?
Many thanks