diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f6d7ba2f1..d392030c6 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,6 +6,8 @@ Contributions guidelines: - If it is a new feature, try to add automated tests for it. - Never submit patches that break existing tests(make test should take care of downloading dependencies and running the tests) +- Do not commit the files in the 'build' dir. They will only be commited on a + release ('git update-index --assume-unchanged build/{js,css}/*' will help) Before starting to develop, enter 'make deps' to download all dependencies needed for developing/testing. 'make test' will run all tests. diff --git a/package.json b/package.json index 77a8b73ea..d0b50ee5f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bootstrap-datetimepicker", - "version": "0.0.7", + "version": "0.0.10", "repository": { "type": "git", "url": "git://github.com/tarruda/bootstrap-datetimepicker.git" diff --git a/src/js/bootstrap-datetimepicker.js b/src/js/bootstrap-datetimepicker.js index d18b04226..9a439ba8a 100644 --- a/src/js/bootstrap-datetimepicker.js +++ b/src/js/bootstrap-datetimepicker.js @@ -1041,7 +1041,7 @@ }; $.fn.datetimepicker.defaults = { - maskInput: true, + maskInput: false, pickDate: true, pickTime: true, pick12HourFormat: false,