Skip to content

Commit 5fd2898

Browse files
committed
Bugfix in progress bar colors in BS3
1 parent 86a5383 commit 5fd2898

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## 3.0.1
4+
5+
- Bugfix in progress bar colors in Bootstrap 3.
6+
37
## 3.0.0
48

59
- Bootstrap 4 by default.

src/ui.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ var ui = {};
154154
}
155155

156156
$.each(options.ui.colorClasses, function (idx, value) {
157-
if (options.ui.bootstrap2 || options.bootstrap3) {
157+
if (options.ui.bootstrap2 || options.ui.bootstrap3) {
158158
$bar.removeClass(cssPrefix + "bar-" + value);
159159
} else {
160160
$bar.removeClass("bg-" + value);

0 commit comments

Comments
 (0)