diff options
| author | spiderr <spiderr@bitweaver.org> | 2020-05-22 19:49:54 -0400 |
|---|---|---|
| committer | spiderr <spiderr@bitweaver.org> | 2020-05-22 19:49:54 -0400 |
| commit | 17db943993f5d3f438aa9817850ea494ba4ca821 (patch) | |
| tree | eaf3a93fd6e5bbe488c33dfdf93cf598ba227a74 /smartyplugins/block.jstab.php | |
| parent | b8ec013450a62110e335a962485e0d7bcfd3822a (diff) | |
| download | themes-17db943993f5d3f438aa9817850ea494ba4ca821.tar.gz themes-17db943993f5d3f438aa9817850ea494ba4ca821.tar.bz2 themes-17db943993f5d3f438aa9817850ea494ba4ca821.zip | |
remove unused data-toggle type
Diffstat (limited to 'smartyplugins/block.jstab.php')
| -rw-r--r-- | smartyplugins/block.jstab.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/smartyplugins/block.jstab.php b/smartyplugins/block.jstab.php index c89f5d7..75162f8 100644 --- a/smartyplugins/block.jstab.php +++ b/smartyplugins/block.jstab.php @@ -25,7 +25,7 @@ function smarty_block_jstab( $pParams, $pContent, &$gBitSmarty, $pRepeat ) { $tabId = strtolower( isset( $pParams['id'] ) ? $pParams['id'] : 'tab'.preg_replace("/[^A-Za-z0-9]/", '', $tTitle) ); - $tabString = '<li '.$tClick.' '.$tClass.' '.$tStyle.'><a href="#'.$tabId.'" data-toggle="'.$type.'">' . $tTitle . '</a></li>'; + $tabString = '<li '.$tClick.' '.$tClass.' '.$tStyle.'><a href="#'.$tabId.'">' . $tTitle . '</a></li>'; if( isset( $pParams['position'] ) ) { array_splice( $jsTabLinks, $pParams['position'], 0, $tabString ); } else { |
