We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86a5383 commit 5fd2898Copy full SHA for 5fd2898
CHANGES.md
@@ -1,5 +1,9 @@
1
# CHANGELOG
2
3
+## 3.0.1
4
+
5
+- Bugfix in progress bar colors in Bootstrap 3.
6
7
## 3.0.0
8
9
- Bootstrap 4 by default.
src/ui.js
@@ -154,7 +154,7 @@ var ui = {};
154
}
155
156
$.each(options.ui.colorClasses, function (idx, value) {
157
- if (options.ui.bootstrap2 || options.bootstrap3) {
+ if (options.ui.bootstrap2 || options.ui.bootstrap3) {
158
$bar.removeClass(cssPrefix + "bar-" + value);
159
} else {
160
$bar.removeClass("bg-" + value);
0 commit comments