widget file update

This commit is contained in:
zotlabs 2017-03-25 14:42:40 -07:00 committed by Mario Vavti
parent 6c92a240cc
commit ecfbb10326

View File

@ -12,7 +12,7 @@ class Helpindex {
if(! $level_0) if(! $level_0)
$level_0 = get_help_content('toc'); $level_0 = get_help_content('toc');
$level_0 = preg_replace('/\<ul(.*?)\>/','<ul class="nav nav-pills nav-stacked">',$level_0); $level_0 = preg_replace('/\<ul(.*?)\>/','<ul class="nav nav-pills flex-column">',$level_0);
$levels = array(); $levels = array();
@ -25,7 +25,7 @@ class Helpindex {
if(! $y) if(! $y)
$y = get_help_content($path . 'toc'); $y = get_help_content($path . 'toc');
if($y) if($y)
$levels[] = preg_replace('/\<ul(.*?)\>/','<ul class="nav nav-pills nav-stacked">',$y); $levels[] = preg_replace('/\<ul(.*?)\>/','<ul class="nav nav-pills flex-column">',$y);
} }
} }