Skip to content

Commit

Permalink
Bump v1.1.3. Final fix keydown.
Browse files Browse the repository at this point in the history
  • Loading branch information
vsn4ik committed Aug 26, 2014
1 parent 326c55d commit b2f4114
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 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-submenu",
"version": "1.1.2",
"version": "1.1.3",
"authors": [
"vsn4ik"
],
Expand Down
2 changes: 1 addition & 1 deletion dist/css/bootstrap-submenu.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Bootstrap-submenu v1.1.2 (http://vsn4ik.github.io/bootstrap-submenu)
* Bootstrap-submenu v1.1.3 (http://vsn4ik.github.io/bootstrap-submenu)
* Copyright 2014 vsn4ik
* Licensed under MIT (https://github.com/vsn4ik/bootstrap-submenu/blob/master/LICENSE)
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/css/bootstrap-submenu.min.css

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

4 changes: 2 additions & 2 deletions dist/js/bootstrap-submenu.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Bootstrap-submenu v1.1.2 (http://vsn4ik.github.io/bootstrap-submenu)
* Bootstrap-submenu v1.1.3 (http://vsn4ik.github.io/bootstrap-submenu)
* Copyright 2014 vsn4ik
* Licensed under MIT (https://github.com/vsn4ik/bootstrap-submenu/blob/master/LICENSE)
*/
Expand All @@ -22,7 +22,7 @@ if (typeof jQuery === 'undefined') {
Submenupicker.prototype = {
init: function() {
this.$element.on('click.bs.dropdown', this.click.bind(this));
this.$menu.keydown(this.keydown.bind(this));
this.$element.keydown(this.keydown.bind(this));
},
click: function(event) {
event.stopPropagation();
Expand Down
4 changes: 2 additions & 2 deletions dist/js/bootstrap-submenu.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 docs/dist/css/bootstrap-submenu.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Bootstrap-submenu v1.1.2 (http://vsn4ik.github.io/bootstrap-submenu)
* Bootstrap-submenu v1.1.3 (http://vsn4ik.github.io/bootstrap-submenu)
* Copyright 2014 vsn4ik
* Licensed under MIT (https://github.com/vsn4ik/bootstrap-submenu/blob/master/LICENSE)
*/
Expand Down
2 changes: 1 addition & 1 deletion docs/dist/css/bootstrap-submenu.min.css

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

4 changes: 2 additions & 2 deletions docs/dist/js/bootstrap-submenu.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Bootstrap-submenu v1.1.2 (http://vsn4ik.github.io/bootstrap-submenu)
* Bootstrap-submenu v1.1.3 (http://vsn4ik.github.io/bootstrap-submenu)
* Copyright 2014 vsn4ik
* Licensed under MIT (https://github.com/vsn4ik/bootstrap-submenu/blob/master/LICENSE)
*/
Expand All @@ -22,7 +22,7 @@ if (typeof jQuery === 'undefined') {
Submenupicker.prototype = {
init: function() {
this.$element.on('click.bs.dropdown', this.click.bind(this));
this.$menu.keydown(this.keydown.bind(this));
this.$element.keydown(this.keydown.bind(this));
},
click: function(event) {
event.stopPropagation();
Expand Down
4 changes: 2 additions & 2 deletions docs/dist/js/bootstrap-submenu.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 js/bootstrap-submenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ if (typeof jQuery === 'undefined') {
Submenupicker.prototype = {
init: function() {
this.$element.on('click.bs.dropdown', this.click.bind(this));
this.$menu.keydown(this.keydown.bind(this));
this.$element.keydown(this.keydown.bind(this));
},
click: function(event) {
event.stopPropagation();
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bootstrap-submenu",
"version": "1.1.2",
"version": "1.1.3",
"description": "Bootstrap Sub-Menus",
"keywords": [
"bootstrap",
Expand Down

0 comments on commit b2f4114

Please sign in to comment.