Skip to content

Commit

Permalink
Use maskInput = false as default now
Browse files Browse the repository at this point in the history
The maskInput option is broken, so unset it by default
  • Loading branch information
tarruda committed Mar 7, 2013
1 parent 5c1552f commit 1e515a3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion src/js/bootstrap-datetimepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@
};

$.fn.datetimepicker.defaults = {
maskInput: true,
maskInput: false,
pickDate: true,
pickTime: true,
pick12HourFormat: false,
Expand Down

0 comments on commit 1e515a3

Please sign in to comment.