PluginProbe
Easy Bootstrap Shortcode / 3.7
Easy Bootstrap Shortcode v3.7
trunk 2.4.0 2.5 3.4 3.5 3.6 3.7 4.0.0 4.4 4.5 4.5.4 5.0.0 5.0.1 5.0.2
← All changes | shortcode/progressbar/plugin_shortcode.php +4 -4 2.53.7 View file →
@@ -11,12 +11,12 @@
11 11 'bartype' => '',
12 12 'class' => '',
13 13 'label' => ''
14 14 ), $params));
15 - $out = $label != '' ? '<div class="osc_bar_outer"><label class="osc-progressbar-label'.EBS_CONTAINER_CLASS.'">' . $label . '</label>' : '';
16 - $out.='<div class="progress ' . $barstyle . ' ' . $class . ' osc-progressbar'.EBS_CONTAINER_CLASS.'">
17 - <div class="progress-bar ' . $bartype . EBS_CONTAINER_CLASS.'" role="progressbar" aria-valuenow="' . $value . '" aria-valuemin="0" aria-valuemax="100" style="width: ' . $value . '%">
18 - <span class="sr-only'.EBS_CONTAINER_CLASS.'">' . $value . '% Complete</span>
15 + $out = $label != '' ? '<div class="osc_bar_outer"><label class="osc-progressbar-label">' . $label . '</label>' : '';
16 + $out.='<div class="progress ' . $barstyle . ' ' . $class . ' osc-progressbar">
17 + <div class="progress-bar ' . $bartype . '" role="progressbar" aria-valuenow="' . $value . '" aria-valuemin="0" aria-valuemax="100" style="width: ' . $value . '%">
18 + <span class="sr-only">' . $value . '% Complete</span>
19 19 </div>
20 20 </div>';
21 21 $out .= $label != '' ?'</div>':'';
22 22 return $out;