You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
previously progress bar was not responsive to change in type.
var notify = $.notify('<strong>Saving</strong> Do not close this page...', {
allow_dismiss: false,
showProgressbar: true
});
setTimeout(function() {
notify.update({'type': 'success', 'message': '<strong>Success</strong> Your page has been saved!', 'progress': 75});
}, 4500);
here info is changed to success
but the color of progress bar is not changed.
progress-bar-{0} where {0} get type value.
but bootstrap need as bg-{0}
Solution:
replacing progress-bar-{0} with bg-{0} solves the problem.
thanku
The text was updated successfully, but these errors were encountered:
Problem:
previously progress bar was not responsive to change in type.
here info is changed to success
but the color of progress bar is not changed.
progress-bar-{0} where {0} get type value.
but bootstrap need as bg-{0}
Solution:
replacing progress-bar-{0} with bg-{0} solves the problem.
thanku
The text was updated successfully, but these errors were encountered: