Skip to content

Commit

Permalink
regression fix 'today' button not displayed in bs3 side by side calendar
Browse files Browse the repository at this point in the history
  • Loading branch information
dleffler committed May 6, 2017
1 parent 6f66108 commit 444ccdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/jquery/addons/js/bootstrap-datetimepicker.js
Expand Up @@ -355,7 +355,7 @@
.append(dateView.addClass('col-md-6'))
.append(timeView.addClass('col-md-6'))
);
if (options.toolbarPlacement === 'bottom') {
if (options.toolbarPlacement === 'bottom' || options.toolbarPlacement === 'default') {
template.append(toolbar);
}
return template;
Expand Down

0 comments on commit 444ccdf

Please sign in to comment.