Skip to content

Commit

Permalink
calling keydown function instead of inputKeydownBind
Browse files Browse the repository at this point in the history
  • Loading branch information
Gillardo committed Aug 26, 2015
1 parent 755b3f3 commit 980493b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootstrap-ui-datetime-picker",
"version": "1.2.0",
"version": "1.2.1",
"homepage": "https://github.com/Gillardo/bootstrap-ui-datetime-picker",
"authors": [
"Gillardo <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion datetime-picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@
}

$popup.remove();
element.unbind('keydown', keydown);
element.unbind('keydown', inputKeydownBind);
$document.unbind('click', documentClickBind);
});
}
Expand Down
4 changes: 2 additions & 2 deletions dist/datetime-picker.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// https://github.com/Gillardo/bootstrap-ui-datetime-picker
// Version: 1.2.0
// Version: 1.2.1
// Released: 2015-08-26
angular.module('ui.bootstrap.datetimepicker', ['ui.bootstrap.dateparser', 'ui.bootstrap.position'])
.constant('uiDatetimePickerConfig', {
Expand Down Expand Up @@ -404,7 +404,7 @@ angular.module('ui.bootstrap.datetimepicker', ['ui.bootstrap.dateparser', 'ui.bo
}

$popup.remove();
element.unbind('keydown', keydown);
element.unbind('keydown', inputKeydownBind);
$document.unbind('click', documentClickBind);
});
}
Expand Down
4 changes: 2 additions & 2 deletions dist/datetime-picker.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "bootstrap-ui-datetime-picker",
"url": "https://github.com/Gillardo/bootstrap-ui-datetime-picker",
"version": "1.2.0",
"version": "1.2.1",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-angular-templates": "^0.5.7",
Expand Down

0 comments on commit 980493b

Please sign in to comment.