Skip to content

Commit

Permalink
generated dist files
Browse files Browse the repository at this point in the history
  • Loading branch information
acrobat committed Mar 25, 2015
1 parent ad3c8cb commit cfa3410
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
2 changes: 1 addition & 1 deletion dist/css/bootstrap-datepicker.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/css/bootstrap-datepicker.standalone.min.css

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions dist/css/bootstrap-datepicker3.min.css

Large diffs are not rendered by default.

6 changes: 1 addition & 5 deletions dist/css/bootstrap-datepicker3.standalone.min.css

Large diffs are not rendered by default.

12 changes: 11 additions & 1 deletion dist/js/bootstrap-datepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,15 @@
}]
);

if (this.o.immediateUpdates) {
// Trigger input updates immediately on changed year/month
this._events.push([this.element, {
'changeYear changeMonth': $.proxy(function(e){
this.update(e.date);
}, this)
}]);
}

this._secondaryEvents = [
[this.picker, {
click: $.proxy(this.click, this)
Expand Down Expand Up @@ -1537,7 +1546,8 @@
weekStart: 0,
disableTouchKeyboard: false,
enableOnReadonly: true,
container: 'body'
container: 'body',
immediateUpdates: false
};
var locale_opts = $.fn.datepicker.locale_opts = [
'format',
Expand Down
2 changes: 1 addition & 1 deletion dist/js/bootstrap-datepicker.min.js

Large diffs are not rendered by default.

0 comments on commit cfa3410

Please sign in to comment.